From 374d314fdb689c3354623bbdc419627284a6197d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 19 Sep 2017 19:34:02 +0200 Subject: [PATCH 01/25] Split FileUtils in two files and remove allFiles function (returns true ?!) --- .../Fake.IO.FileSystem.fsproj | 5 ++-- .../{FileUtils.fs => Shell.fs} | 30 ------------------- src/app/Fake.IO.FileSystem/Templates.fs | 26 ++++++++++++++++ src/app/FakeLib/FileHelper.fs | 1 + 4 files changed, 30 insertions(+), 32 deletions(-) rename src/app/Fake.IO.FileSystem/{FileUtils.fs => Shell.fs} (93%) create mode 100644 src/app/Fake.IO.FileSystem/Templates.fs diff --git a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj index b9b49ae9892..114557b1785 100644 --- a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj +++ b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj @@ -12,7 +12,8 @@ - + + @@ -27,4 +28,4 @@ $(DefineConstants);RELEASE - \ No newline at end of file + diff --git a/src/app/Fake.IO.FileSystem/FileUtils.fs b/src/app/Fake.IO.FileSystem/Shell.fs similarity index 93% rename from src/app/Fake.IO.FileSystem/FileUtils.fs rename to src/app/Fake.IO.FileSystem/Shell.fs index 41a3701453b..0a3e479fe5a 100644 --- a/src/app/Fake.IO.FileSystem/FileUtils.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -6,9 +6,6 @@ open Fake.Core open Fake.IO.FileSystem.Operators open Fake.IO.FileSystem.FileSystemInfo -module FileFilter = - let allFiles f = true - module Shell = /// Copies a single file to the target and overwrites the existing file. @@ -404,30 +401,3 @@ module Shell = /// The source /// The destination let mv src dest = MoveFile src dest - -/// NOTE: Maybe this should be an extra module? -/// Contains basic templating functions. Used in other helpers. -module Templates = - - /// Loads all templates (lazy - line by line!) - let loadTemplates seq = Seq.map (fun fileName -> fileName, File.Read fileName) seq - - /// Replaces a bunch of the keywords in all files (lazy - line by line!) - let replaceKeywords replacements = - Seq.map (fun (fileName, file) -> - fileName, - file |> Seq.map (fun (line : string) -> - let mutable sb = new System.Text.StringBuilder(line) - for (k : string, r : string) in replacements do - sb <- sb.Replace(k, r) - sb.ToString())) - - /// Saves all files (lazy - file by file!) - let saveFiles = Seq.iter (fun (fileName, file) -> File.WriteToFile false fileName (Seq.toList file)) - - /// Replaces the templates with the given replacements - let processTemplates replacements files = - files - |> loadTemplates - |> replaceKeywords replacements - |> saveFiles diff --git a/src/app/Fake.IO.FileSystem/Templates.fs b/src/app/Fake.IO.FileSystem/Templates.fs new file mode 100644 index 00000000000..0f3778039ca --- /dev/null +++ b/src/app/Fake.IO.FileSystem/Templates.fs @@ -0,0 +1,26 @@ +/// NOTE: Maybe this should be an extra module? +/// Contains basic templating functions. Used in other helpers. +module Fake.IO.FileSystem.Templates + +/// Loads all templates (lazy - line by line!) +let loadTemplates seq = Seq.map (fun fileName -> fileName, File.Read fileName) seq + +/// Replaces a bunch of the keywords in all files (lazy - line by line!) +let replaceKeywords replacements = + Seq.map (fun (fileName, file) -> + fileName, + file |> Seq.map (fun (line : string) -> + let mutable sb = new System.Text.StringBuilder(line) + for (k : string, r : string) in replacements do + sb <- sb.Replace(k, r) + sb.ToString())) + +/// Saves all files (lazy - file by file!) +let saveFiles = Seq.iter (fun (fileName, file) -> File.WriteToFile false fileName (Seq.toList file)) + +/// Replaces the templates with the given replacements +let processTemplates replacements files = + files + |> loadTemplates + |> replaceKeywords replacements + |> saveFiles diff --git a/src/app/FakeLib/FileHelper.fs b/src/app/FakeLib/FileHelper.fs index 22d83f8c267..8e7ed6fe311 100644 --- a/src/app/FakeLib/FileHelper.fs +++ b/src/app/FakeLib/FileHelper.fs @@ -234,6 +234,7 @@ let CopyFiles target files = Copy target files let excludeSVNFiles (path : string) = not <| path.Contains ".svn" /// Includes all files +[] let allFiles (path : string) = true /// Copies a directory recursivly. If the target directory does not exist, it will be created. From 09cff4cb20abda33277718e3afaf5557145b693e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 19 Sep 2017 19:55:25 +0200 Subject: [PATCH 02/25] Separate modules FileInfo, FileSystemInfo, Operators --- .../Fake.IO.FileSystem.fsproj | 3 ++ src/app/Fake.IO.FileSystem/FileInfo.fs | 27 ++++++++++ src/app/Fake.IO.FileSystem/FileSystem.fs | 53 ------------------- src/app/Fake.IO.FileSystem/FileSystemInfo.fs | 26 +++++++++ src/app/Fake.IO.FileSystem/Operators.fs | 9 ++++ 5 files changed, 65 insertions(+), 53 deletions(-) create mode 100644 src/app/Fake.IO.FileSystem/FileInfo.fs create mode 100644 src/app/Fake.IO.FileSystem/FileSystemInfo.fs create mode 100644 src/app/Fake.IO.FileSystem/Operators.fs diff --git a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj index 114557b1785..4e2051bc13b 100644 --- a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj +++ b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj @@ -11,6 +11,9 @@ + + + diff --git a/src/app/Fake.IO.FileSystem/FileInfo.fs b/src/app/Fake.IO.FileSystem/FileInfo.fs new file mode 100644 index 00000000000..e79d79fba58 --- /dev/null +++ b/src/app/Fake.IO.FileSystem/FileInfo.fs @@ -0,0 +1,27 @@ +namespace Fake.IO.FileSystem + +open System.IO + +module FileInfo = + /// Creates a FileInfo for the given path. + let inline ofPath path = new FileInfo(path) + + /// Active Pattern for determining file name. + let (|FileInfoFullName|) (f : FileInfo) = f.FullName + + /// Active Pattern for determining FileInfoNameSections. + let (|FileInfoNameSections|) (f : FileInfo) = (f.Name, f.Extension, f.FullName) + + /// Checks if the two files are byte-to-byte equal. + let contentIsEqualTo (first : FileInfo) (second : FileInfo) = + if first.Length <> second.Length then false + else + let BYTES_TO_READ = 32768 + use fs1 = first.OpenRead() + use fs2 = second.OpenRead() + let one = Array.create BYTES_TO_READ (byte 0) + let two = Array.create BYTES_TO_READ (byte 0) + let mutable eq = true + while eq && fs1.Read(one, 0, BYTES_TO_READ) <> 0 && fs2.Read(two, 0, BYTES_TO_READ) <> 0 do + if one <> two then eq <- false + eq diff --git a/src/app/Fake.IO.FileSystem/FileSystem.fs b/src/app/Fake.IO.FileSystem/FileSystem.fs index 737c8c26f0c..ac87031080a 100644 --- a/src/app/Fake.IO.FileSystem/FileSystem.fs +++ b/src/app/Fake.IO.FileSystem/FileSystem.fs @@ -4,38 +4,8 @@ namespace Fake.IO.FileSystem open System.Text open System.IO open Fake.Core - -module Operators = - /// Combines two path strings using Path.Combine - let inline (@@) path1 path2 = Path.combineTrimEnd path1 path2 - /// Combines two path strings using Path.Combine - let inline () path1 path2 = Path.combine path1 path2 - open Operators -module FileInfo = - /// Creates a FileInfo for the given path. - let inline ofPath path = new FileInfo(path) - - /// Active Pattern for determining file name. - let (|FileInfoFullName|) (f : FileInfo) = f.FullName - - /// Active Pattern for determining FileInfoNameSections. - let (|FileInfoNameSections|) (f : FileInfo) = (f.Name, f.Extension, f.FullName) - - /// Checks if the two files are byte-to-byte equal. - let contentIsEqualTo (first : FileInfo) (second : FileInfo) = - if first.Length <> second.Length then false - else - let BYTES_TO_READ = 32768 - use fs1 = first.OpenRead() - use fs2 = second.OpenRead() - let one = Array.create BYTES_TO_READ (byte 0) - let two = Array.create BYTES_TO_READ (byte 0) - let mutable eq = true - while eq && fs1.Read(one, 0, BYTES_TO_READ) <> 0 && fs2.Read(two, 0, BYTES_TO_READ) <> 0 do - if one <> two then eq <- false - eq module DirectoryInfo = /// Creates a DirectoryInfo for the given path. let inline ofPath path = DirectoryInfo(path) @@ -119,29 +89,6 @@ module DirectoryInfo = /// Copies the file structure recursively. let copyRecursive2 (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite filter = dir |> copyRecursiveTo2 overwrite filter outputDir -module FileSystemInfo = - /// Creates a FileInfo or a DirectoryInfo for the given path - let inline ofPath path : FileSystemInfo = - if Directory.Exists path then upcast DirectoryInfo.ofPath path - else upcast FileInfo.ofPath path - - /// Sets all given files or directories readonly. - let SetReadOnly readOnly (items : string seq) = - items |> Seq.iter (fun item -> - let fi = FileInfo.ofPath item - if fi.Exists then fi.IsReadOnly <- readOnly - else - item - |> DirectoryInfo.ofPath - |> DirectoryInfo.setDirectoryReadOnly readOnly) - - /// Active pattern which discriminates between files and directories. - let (|File|Directory|) (fileSysInfo : FileSystemInfo) = - match fileSysInfo with - | :? FileInfo as file -> File(file) - | :? DirectoryInfo as dir -> Directory(dir, dir.EnumerateFileSystemInfos()) - | _ -> failwith "No file or directory given." - module File = /// Raises an exception if the file doesn't exist on disk. let checkFileExists fileName = diff --git a/src/app/Fake.IO.FileSystem/FileSystemInfo.fs b/src/app/Fake.IO.FileSystem/FileSystemInfo.fs new file mode 100644 index 00000000000..803386b7615 --- /dev/null +++ b/src/app/Fake.IO.FileSystem/FileSystemInfo.fs @@ -0,0 +1,26 @@ +namespace Fake.IO.FileSystem + +open System.IO + +module FileSystemInfo = + /// Creates a FileInfo or a DirectoryInfo for the given path + let inline ofPath path : FileSystemInfo = + if Directory.Exists path then upcast DirectoryInfo.ofPath path + else upcast FileInfo.ofPath path + + /// Sets all given files or directories readonly. + let SetReadOnly readOnly (items : string seq) = + items |> Seq.iter (fun item -> + let fi = FileInfo.ofPath item + if fi.Exists then fi.IsReadOnly <- readOnly + else + item + |> DirectoryInfo.ofPath + |> DirectoryInfo.setDirectoryReadOnly readOnly) + + /// Active pattern which discriminates between files and directories. + let (|File|Directory|) (fileSysInfo : FileSystemInfo) = + match fileSysInfo with + | :? FileInfo as file -> File(file) + | :? DirectoryInfo as dir -> Directory(dir, dir.EnumerateFileSystemInfos()) + | _ -> failwith "No file or directory given." diff --git a/src/app/Fake.IO.FileSystem/Operators.fs b/src/app/Fake.IO.FileSystem/Operators.fs new file mode 100644 index 00000000000..d3c9b76fa8b --- /dev/null +++ b/src/app/Fake.IO.FileSystem/Operators.fs @@ -0,0 +1,9 @@ +namespace Fake.IO.FileSystem + +open System.IO + +module Operators = + /// Combines two path strings using Path.Combine + let inline (@@) path1 path2 = Path.combineTrimEnd path1 path2 + /// Combines two path strings using Path.Combine + let inline () path1 path2 = Path.combine path1 path2 From 42e4ddd93b2806b971b4a764f044ee3a12583721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 19 Sep 2017 20:55:57 +0200 Subject: [PATCH 03/25] Adjust fsproj and remove FileFilter use --- .../Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj | 2 +- src/app/Fake.IO.FileSystem/Shell.fs | 2 +- src/app/FakeLib/FakeLib.fsproj | 16 ++++++++++++++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj index 4e2051bc13b..3fa5669cd07 100644 --- a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj +++ b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj @@ -13,8 +13,8 @@ - + diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index 0a3e479fe5a..9ecf79fbc26 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -368,7 +368,7 @@ module Shell = /// The source /// The destination let cp_r src dest = - if Directory.Exists src then CopyDir dest src FileFilter.allFiles + if Directory.Exists src then CopyDir dest src (fun _ -> true) else CopyFile dest src /// Like "cp" in a shell. Copies a single file. diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 57a1237f40f..18067e30127 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -115,11 +115,23 @@ Fake.IO.FileSystem/Path.fs + + Fake.IO.FileSystem/FileInfo.fs + + + Fake.IO.FileSystem/Operators.fs + Fake.IO.FileSystem/FileSystem.fs - - Fake.IO.FileSystem/FileUtils.fs + + Fake.IO.FileSystem/FileSystemInfo.fs + + + Fake.IO.FileSystem/Shell.fs + + + Fake.IO.FileSystem/Templates.fs Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs From b204d63a998bdc27e7bef0fe1a482ecc6892a4ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 19 Sep 2017 21:14:45 +0200 Subject: [PATCH 04/25] Split Directory module in its own file --- src/app/Fake.IO.FileSystem/Directory.fs | 49 +++++++++++++++++++ .../Fake.IO.FileSystem.fsproj | 1 + src/app/Fake.IO.FileSystem/FileSystem.fs | 45 ----------------- src/app/FakeLib/FakeLib.fsproj | 3 ++ 4 files changed, 53 insertions(+), 45 deletions(-) create mode 100644 src/app/Fake.IO.FileSystem/Directory.fs diff --git a/src/app/Fake.IO.FileSystem/Directory.fs b/src/app/Fake.IO.FileSystem/Directory.fs new file mode 100644 index 00000000000..e4a3400a588 --- /dev/null +++ b/src/app/Fake.IO.FileSystem/Directory.fs @@ -0,0 +1,49 @@ +namespace Fake.IO.FileSystem + +open System.IO + +module Directory = + + /// Creates a directory if it does not exist. + let CreateDir path = + let dir = DirectoryInfo.ofPath path + if not dir.Exists then + // TODO: logfn "Creating %s" dir.FullName + dir.Create() + else () //TODO: logfn "%s already exists." dir.FullName + + /// Checks if the given directory exists. If not then this functions creates the directory. + let inline ensure dir = + if not (Directory.Exists dir) then + Directory.CreateDirectory dir |> ignore + + let isDirectory path = Path.isDirectory path + + /// Gets the first file in the directory matching the search pattern as an option value. + let tryFindFirstMatchingFile pattern dir = + dir + |> DirectoryInfo.ofPath + |> DirectoryInfo.getMatchingFiles pattern + |> fun files -> + if Seq.isEmpty files then None + else (Seq.head files).FullName |> Some + + /// Gets the first file in the directory matching the search pattern or throws an error if nothing was found. + let findFirstMatchingFile pattern dir = + match tryFindFirstMatchingFile pattern dir with + | Some x -> x + | None -> new FileNotFoundException(sprintf "Could not find file matching %s in %s" pattern dir) |> raise + + /// Deletes a directory if it exists (including all contained elements). + let delete path = + let dir = DirectoryInfo.ofPath path + if dir.Exists then + // set all files readonly = false + DirectoryInfo.setDirectoryReadOnly false dir + //!!"/**/*.*" + //|> SetBaseDir dir.FullName + //|> (SetReadOnly false) + //logfn "Deleting %s" dir.FullName + dir.Delete true + else () //TODO: logfn "%s does not exist." dir.FullName + diff --git a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj index 3fa5669cd07..a5c2b31d89d 100644 --- a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj +++ b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj @@ -14,6 +14,7 @@ + diff --git a/src/app/Fake.IO.FileSystem/FileSystem.fs b/src/app/Fake.IO.FileSystem/FileSystem.fs index ac87031080a..01972c62e6f 100644 --- a/src/app/Fake.IO.FileSystem/FileSystem.fs +++ b/src/app/Fake.IO.FileSystem/FileSystem.fs @@ -204,48 +204,3 @@ module File = |> replaceF |> ReplaceFile fileName -module Directory = - - /// Creates a directory if it does not exist. - let CreateDir path = - let dir = DirectoryInfo.ofPath path - if not dir.Exists then - // TODO: logfn "Creating %s" dir.FullName - dir.Create() - else () //TODO: logfn "%s already exists." dir.FullName - - /// Checks if the given directory exists. If not then this functions creates the directory. - let inline ensure dir = - if not (Directory.Exists dir) then - Directory.CreateDirectory dir |> ignore - - let isDirectory path = Path.isDirectory path - - /// Gets the first file in the directory matching the search pattern as an option value. - let tryFindFirstMatchingFile pattern dir = - dir - |> DirectoryInfo.ofPath - |> DirectoryInfo.getMatchingFiles pattern - |> fun files -> - if Seq.isEmpty files then None - else (Seq.head files).FullName |> Some - - /// Gets the first file in the directory matching the search pattern or throws an error if nothing was found. - let findFirstMatchingFile pattern dir = - match tryFindFirstMatchingFile pattern dir with - | Some x -> x - | None -> new FileNotFoundException(sprintf "Could not find file matching %s in %s" pattern dir) |> raise - - /// Deletes a directory if it exists (including all contained elements). - let delete path = - let dir = DirectoryInfo.ofPath path - if dir.Exists then - // set all files readonly = false - DirectoryInfo.setDirectoryReadOnly false dir - //!!"/**/*.*" - //|> SetBaseDir dir.FullName - //|> (SetReadOnly false) - //logfn "Deleting %s" dir.FullName - dir.Delete true - else () //TODO: logfn "%s does not exist." dir.FullName - diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 18067e30127..1e0ae213a22 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -124,6 +124,9 @@ Fake.IO.FileSystem/FileSystem.fs + + Fake.IO.FileSystem/Directory.fs + Fake.IO.FileSystem/FileSystemInfo.fs From 76c584df6dcfc47d765f9bac93df10355563534e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 19 Sep 2017 21:37:41 +0200 Subject: [PATCH 05/25] Split DirectoryInfo into its own file, leaving File alone (then rename file) --- src/app/Fake.IO.FileSystem/DirectoryInfo.fs | 87 +++++++++++++++++++ .../Fake.IO.FileSystem.fsproj | 3 +- .../{FileSystem.fs => File.fs} | 83 ------------------ src/app/FakeLib/FakeLib.fsproj | 7 +- 4 files changed, 94 insertions(+), 86 deletions(-) create mode 100644 src/app/Fake.IO.FileSystem/DirectoryInfo.fs rename src/app/Fake.IO.FileSystem/{FileSystem.fs => File.fs} (55%) diff --git a/src/app/Fake.IO.FileSystem/DirectoryInfo.fs b/src/app/Fake.IO.FileSystem/DirectoryInfo.fs new file mode 100644 index 00000000000..e93c5a86805 --- /dev/null +++ b/src/app/Fake.IO.FileSystem/DirectoryInfo.fs @@ -0,0 +1,87 @@ +namespace Fake.IO.FileSystem + +open System.IO + +module DirectoryInfo = + /// Creates a DirectoryInfo for the given path. + let inline ofPath path = DirectoryInfo(path) + + /// Gets all subdirectories of a given directory. + let inline getDirectories (dir : DirectoryInfo) = dir.GetDirectories() + + /// Gets all files in the directory. + let inline getFiles (dir : DirectoryInfo) = dir.GetFiles() + + /// Finds all the files in the directory matching the search pattern. + let getMatchingFiles pattern (dir : DirectoryInfo) = + if dir.Exists then dir.GetFiles pattern + else [||] + + /// Checks if dir1 is a subfolder of dir2. If dir1 equals dir2 the function returns also true. + let rec isSubfolderOf (dir2 : DirectoryInfo) (dir1 : DirectoryInfo) = + if Path.normalizeFileName dir1.FullName = Path.normalizeFileName dir2.FullName then true + else if isNull dir1.Parent then false + else dir1.Parent |> isSubfolderOf dir2 + + /// Checks if the file is in a subfolder of the dir. + let containsFile (fileInfo : FileInfo) (dir : DirectoryInfo) = isSubfolderOf dir fileInfo.Directory + + /// Checks if the directory exists on disk. + let exists (dir : DirectoryInfo) = dir.Exists + + + /// Ensure that directory chain exists. Create necessary directories if necessary. + let inline ensure (dir : DirectoryInfo) = + if not dir.Exists then dir.Create() + + + /// Performs the given actions on all files and subdirectories + let rec recursively dirF fileF (dir : DirectoryInfo) = + dir + |> getDirectories + |> Seq.iter (fun dir -> + recursively dirF fileF dir + dirF dir) + dir + |> getFiles + |> Seq.iter fileF + + /// Sets the directory readonly + let setDirectoryReadOnly readOnly (dir : DirectoryInfo) = + if dir.Exists then + let isReadOnly = dir.Attributes &&& FileAttributes.ReadOnly = FileAttributes.ReadOnly + if readOnly && (not isReadOnly) then dir.Attributes <- dir.Attributes ||| FileAttributes.ReadOnly + if (not readOnly) && not isReadOnly then dir.Attributes <- dir.Attributes &&& (~~~FileAttributes.ReadOnly) + + /// Sets all files in the directory readonly. + let SetDirReadOnly readOnly dir = + recursively (setDirectoryReadOnly readOnly) (fun file -> file.IsReadOnly <- readOnly) dir + + /// Copies the file structure recursively. + let rec copyRecursiveTo2 overwrite filter (outputDir : DirectoryInfo) (dir : DirectoryInfo) = + let files = + dir + |> getDirectories + |> Seq.fold (fun acc (d : DirectoryInfo) -> + let newDir = outputDir.FullName @@ d.Name + |> ofPath + ensure newDir + d + |> copyRecursiveTo2 overwrite filter newDir + |> fun r -> r @ acc) [] + (dir + |> getFiles + |> Seq.filter (fun f -> filter outputDir f) + |> Seq.map (fun f -> + let newFileName = outputDir.FullName @@ f.Name + f.CopyTo(newFileName, overwrite) |> ignore + newFileName) + |> Seq.toList) @ files + + /// Copies the file structure recursively. + let copyRecursiveTo overwrite (outputDir : DirectoryInfo) (dir : DirectoryInfo) = copyRecursiveTo2 overwrite (fun _ _ -> true) outputDir dir + /// Copies the file structure recursively. + let copyRecursive (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite = dir |> copyRecursiveTo overwrite outputDir + /// Copies the file structure recursively. + let copyRecursive2 (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite filter = dir |> copyRecursiveTo2 overwrite filter outputDir + diff --git a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj index a5c2b31d89d..65bdc7e900d 100644 --- a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj +++ b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj @@ -13,7 +13,8 @@ - + + diff --git a/src/app/Fake.IO.FileSystem/FileSystem.fs b/src/app/Fake.IO.FileSystem/File.fs similarity index 55% rename from src/app/Fake.IO.FileSystem/FileSystem.fs rename to src/app/Fake.IO.FileSystem/File.fs index 01972c62e6f..cfb0d3aabad 100644 --- a/src/app/Fake.IO.FileSystem/FileSystem.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -6,89 +6,6 @@ open System.IO open Fake.Core open Operators -module DirectoryInfo = - /// Creates a DirectoryInfo for the given path. - let inline ofPath path = DirectoryInfo(path) - - /// Gets all subdirectories of a given directory. - let inline getDirectories (dir : DirectoryInfo) = dir.GetDirectories() - - /// Gets all files in the directory. - let inline getFiles (dir : DirectoryInfo) = dir.GetFiles() - - /// Finds all the files in the directory matching the search pattern. - let getMatchingFiles pattern (dir : DirectoryInfo) = - if dir.Exists then dir.GetFiles pattern - else [||] - - /// Checks if dir1 is a subfolder of dir2. If dir1 equals dir2 the function returns also true. - let rec isSubfolderOf (dir2 : DirectoryInfo) (dir1 : DirectoryInfo) = - if Path.normalizeFileName dir1.FullName = Path.normalizeFileName dir2.FullName then true - else if isNull dir1.Parent then false - else dir1.Parent |> isSubfolderOf dir2 - - /// Checks if the file is in a subfolder of the dir. - let containsFile (fileInfo : FileInfo) (dir : DirectoryInfo) = isSubfolderOf dir fileInfo.Directory - - /// Checks if the directory exists on disk. - let exists (dir : DirectoryInfo) = dir.Exists - - - /// Ensure that directory chain exists. Create necessary directories if necessary. - let inline ensure (dir : DirectoryInfo) = - if not dir.Exists then dir.Create() - - - /// Performs the given actions on all files and subdirectories - let rec recursively dirF fileF (dir : DirectoryInfo) = - dir - |> getDirectories - |> Seq.iter (fun dir -> - recursively dirF fileF dir - dirF dir) - dir - |> getFiles - |> Seq.iter fileF - - /// Sets the directory readonly - let setDirectoryReadOnly readOnly (dir : DirectoryInfo) = - if dir.Exists then - let isReadOnly = dir.Attributes &&& FileAttributes.ReadOnly = FileAttributes.ReadOnly - if readOnly && (not isReadOnly) then dir.Attributes <- dir.Attributes ||| FileAttributes.ReadOnly - if (not readOnly) && not isReadOnly then dir.Attributes <- dir.Attributes &&& (~~~FileAttributes.ReadOnly) - - /// Sets all files in the directory readonly. - let SetDirReadOnly readOnly dir = - recursively (setDirectoryReadOnly readOnly) (fun file -> file.IsReadOnly <- readOnly) dir - - /// Copies the file structure recursively. - let rec copyRecursiveTo2 overwrite filter (outputDir : DirectoryInfo) (dir : DirectoryInfo) = - let files = - dir - |> getDirectories - |> Seq.fold (fun acc (d : DirectoryInfo) -> - let newDir = outputDir.FullName @@ d.Name - |> ofPath - ensure newDir - d - |> copyRecursiveTo2 overwrite filter newDir - |> fun r -> r @ acc) [] - (dir - |> getFiles - |> Seq.filter (fun f -> filter outputDir f) - |> Seq.map (fun f -> - let newFileName = outputDir.FullName @@ f.Name - f.CopyTo(newFileName, overwrite) |> ignore - newFileName) - |> Seq.toList) @ files - - /// Copies the file structure recursively. - let copyRecursiveTo overwrite (outputDir : DirectoryInfo) (dir : DirectoryInfo) = copyRecursiveTo2 overwrite (fun _ _ -> true) outputDir dir - /// Copies the file structure recursively. - let copyRecursive (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite = dir |> copyRecursiveTo overwrite outputDir - /// Copies the file structure recursively. - let copyRecursive2 (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite filter = dir |> copyRecursiveTo2 overwrite filter outputDir - module File = /// Raises an exception if the file doesn't exist on disk. let checkFileExists fileName = diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 1e0ae213a22..c8e446152ae 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -121,8 +121,11 @@ Fake.IO.FileSystem/Operators.fs - - Fake.IO.FileSystem/FileSystem.fs + + Fake.IO.FileSystem/DirectoryInfo.fs + + + Fake.IO.FileSystem/File.fs Fake.IO.FileSystem/Directory.fs From 5cfe1717bcc9596cc1d38c0e09a34843f16bc5f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 19 Sep 2017 22:27:55 +0200 Subject: [PATCH 06/25] Add Obsolete for all DirectoryInfo module functions --- src/app/Fake.IO.FileSystem/Directory.fs | 4 +-- src/app/Fake.IO.FileSystem/DirectoryInfo.fs | 38 ++++++++++---------- src/app/Fake.IO.FileSystem/FileSystemInfo.fs | 2 +- src/app/Fake.IO.FileSystem/Shell.fs | 14 ++++---- src/app/Fake.Tools.Git/Repository.fs | 2 +- src/app/FakeLib/FileHelper.fs | 5 +++ src/app/FakeLib/FileSystemHelper.fs | 13 +++++++ 7 files changed, 48 insertions(+), 30 deletions(-) diff --git a/src/app/Fake.IO.FileSystem/Directory.fs b/src/app/Fake.IO.FileSystem/Directory.fs index e4a3400a588..54e6bfd6954 100644 --- a/src/app/Fake.IO.FileSystem/Directory.fs +++ b/src/app/Fake.IO.FileSystem/Directory.fs @@ -32,14 +32,14 @@ module Directory = let findFirstMatchingFile pattern dir = match tryFindFirstMatchingFile pattern dir with | Some x -> x - | None -> new FileNotFoundException(sprintf "Could not find file matching %s in %s" pattern dir) |> raise + | None -> FileNotFoundException(sprintf "Could not find file matching %s in %s" pattern dir) |> raise /// Deletes a directory if it exists (including all contained elements). let delete path = let dir = DirectoryInfo.ofPath path if dir.Exists then // set all files readonly = false - DirectoryInfo.setDirectoryReadOnly false dir + DirectoryInfo.setReadOnly false dir //!!"/**/*.*" //|> SetBaseDir dir.FullName //|> (SetReadOnly false) diff --git a/src/app/Fake.IO.FileSystem/DirectoryInfo.fs b/src/app/Fake.IO.FileSystem/DirectoryInfo.fs index e93c5a86805..f39212d921a 100644 --- a/src/app/Fake.IO.FileSystem/DirectoryInfo.fs +++ b/src/app/Fake.IO.FileSystem/DirectoryInfo.fs @@ -1,13 +1,14 @@ namespace Fake.IO.FileSystem open System.IO +open Fake.IO.FileSystem.Operators module DirectoryInfo = /// Creates a DirectoryInfo for the given path. let inline ofPath path = DirectoryInfo(path) /// Gets all subdirectories of a given directory. - let inline getDirectories (dir : DirectoryInfo) = dir.GetDirectories() + let inline getSubDirectories (dir : DirectoryInfo) = dir.GetDirectories() /// Gets all files in the directory. let inline getFiles (dir : DirectoryInfo) = dir.GetFiles() @@ -16,6 +17,12 @@ module DirectoryInfo = let getMatchingFiles pattern (dir : DirectoryInfo) = if dir.Exists then dir.GetFiles pattern else [||] + + + /// Finds all the files in the directory and in all subdirectories matching the search pattern. + let getMatchingFilesRecursive pattern (dir : DirectoryInfo) = + if dir.Exists then dir.GetFiles(pattern, SearchOption.AllDirectories) + else [||] /// Checks if dir1 is a subfolder of dir2. If dir1 equals dir2 the function returns also true. let rec isSubfolderOf (dir2 : DirectoryInfo) (dir1 : DirectoryInfo) = @@ -29,16 +36,14 @@ module DirectoryInfo = /// Checks if the directory exists on disk. let exists (dir : DirectoryInfo) = dir.Exists - /// Ensure that directory chain exists. Create necessary directories if necessary. let inline ensure (dir : DirectoryInfo) = if not dir.Exists then dir.Create() - /// Performs the given actions on all files and subdirectories - let rec recursively dirF fileF (dir : DirectoryInfo) = + let rec private recursively dirF fileF (dir : DirectoryInfo) = dir - |> getDirectories + |> getSubDirectories |> Seq.iter (fun dir -> recursively dirF fileF dir dirF dir) @@ -47,27 +52,27 @@ module DirectoryInfo = |> Seq.iter fileF /// Sets the directory readonly - let setDirectoryReadOnly readOnly (dir : DirectoryInfo) = + let setReadOnly readOnly (dir : DirectoryInfo) = if dir.Exists then let isReadOnly = dir.Attributes &&& FileAttributes.ReadOnly = FileAttributes.ReadOnly if readOnly && (not isReadOnly) then dir.Attributes <- dir.Attributes ||| FileAttributes.ReadOnly if (not readOnly) && not isReadOnly then dir.Attributes <- dir.Attributes &&& (~~~FileAttributes.ReadOnly) - /// Sets all files in the directory readonly. - let SetDirReadOnly readOnly dir = - recursively (setDirectoryReadOnly readOnly) (fun file -> file.IsReadOnly <- readOnly) dir + /// Sets all files in the directory readonly recursively. + let setReadOnlyRecursive readOnly dir = + recursively (setReadOnly readOnly) (fun file -> file.IsReadOnly <- readOnly) dir - /// Copies the file structure recursively. - let rec copyRecursiveTo2 overwrite filter (outputDir : DirectoryInfo) (dir : DirectoryInfo) = + /// Copies the file structure recursively, filtering files. + let rec copyRecursiveToWithFilter overwrite filter (outputDir : DirectoryInfo) (dir : DirectoryInfo) = let files = dir - |> getDirectories + |> getSubDirectories |> Seq.fold (fun acc (d : DirectoryInfo) -> let newDir = outputDir.FullName @@ d.Name |> ofPath ensure newDir d - |> copyRecursiveTo2 overwrite filter newDir + |> copyRecursiveToWithFilter overwrite filter newDir |> fun r -> r @ acc) [] (dir |> getFiles @@ -79,9 +84,4 @@ module DirectoryInfo = |> Seq.toList) @ files /// Copies the file structure recursively. - let copyRecursiveTo overwrite (outputDir : DirectoryInfo) (dir : DirectoryInfo) = copyRecursiveTo2 overwrite (fun _ _ -> true) outputDir dir - /// Copies the file structure recursively. - let copyRecursive (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite = dir |> copyRecursiveTo overwrite outputDir - /// Copies the file structure recursively. - let copyRecursive2 (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite filter = dir |> copyRecursiveTo2 overwrite filter outputDir - + let copyRecursiveTo overwrite (outputDir : DirectoryInfo) (dir : DirectoryInfo) = copyRecursiveToWithFilter overwrite (fun _ _ -> true) outputDir dir diff --git a/src/app/Fake.IO.FileSystem/FileSystemInfo.fs b/src/app/Fake.IO.FileSystem/FileSystemInfo.fs index 803386b7615..373c4653832 100644 --- a/src/app/Fake.IO.FileSystem/FileSystemInfo.fs +++ b/src/app/Fake.IO.FileSystem/FileSystemInfo.fs @@ -16,7 +16,7 @@ module FileSystemInfo = else item |> DirectoryInfo.ofPath - |> DirectoryInfo.setDirectoryReadOnly readOnly) + |> DirectoryInfo.setReadOnly readOnly) /// Active pattern which discriminates between files and directories. let (|File|Directory|) (fileSysInfo : FileSystemInfo) = diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index 9ecf79fbc26..5fcc80af275 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -270,8 +270,8 @@ module Shell = /// Copies the file structure recursively. - let CopyRecursive dir outputDir overWrite = DirectoryInfo.copyRecursiveTo overWrite (DirectoryInfo.ofPath outputDir) (DirectoryInfo.ofPath dir) - let CopyRecursiveTo overWrite outputDir dir = DirectoryInfo.copyRecursiveTo overWrite (DirectoryInfo.ofPath outputDir) (DirectoryInfo.ofPath dir) + let CopyRecursive dir outputDir overWrite = DirectoryInfo.copyRecursiveTo overWrite outputDir dir + let CopyRecursiveTo overWrite outputDir dir = DirectoryInfo.copyRecursiveTo overWrite outputDir dir type CopyRecursiveMethod = | Overwrite @@ -291,16 +291,16 @@ module Shell = let CopyRecursive2 method dir outputDir = let dirInfo = DirectoryInfo.ofPath dir let outputDirInfo = DirectoryInfo.ofPath outputDir - let cr2 = DirectoryInfo.copyRecursive2 dirInfo outputDirInfo false + let copyRecursiveWithFilter f = DirectoryInfo.copyRecursiveToWithFilter false f dirInfo outputDirInfo match method with | Overwrite -> DirectoryInfo.copyRecursiveTo true dirInfo outputDirInfo | NoOverwrite -> DirectoryInfo.copyRecursiveTo false dirInfo outputDirInfo - | Skip -> cr2 <| fun d f -> d.FullName @@ f.Name |> File.Exists |> not + | Skip -> copyRecursiveWithFilter <| fun d f -> d.FullName @@ f.Name |> File.Exists |> not | IncludePattern(pattern) -> - cr2 <| fun d f -> d.FullName @@ f.Name |> (isMatch pattern) + copyRecursiveWithFilter <| fun d f -> d.FullName @@ f.Name |> (isMatch pattern) | ExcludePattern(pattern) -> - cr2 <| fun d f -> d.FullName @@ f.Name |> (isMatch pattern) |> not - | Filter(f) -> cr2 f + copyRecursiveWithFilter <| fun d f -> d.FullName @@ f.Name |> (isMatch pattern) |> not + | Filter(f) -> copyRecursiveWithFilter f /// Moves a single file to the target and overwrites the existing file. /// ## Parameters diff --git a/src/app/Fake.Tools.Git/Repository.fs b/src/app/Fake.Tools.Git/Repository.fs index 05f9812ba04..91794256abc 100644 --- a/src/app/Fake.Tools.Git/Repository.fs +++ b/src/app/Fake.Tools.Git/Repository.fs @@ -70,4 +70,4 @@ let fullclean repositoryDir = Directory.CreateDir repositoryDir // set writeable - File.SetAttributes(repositoryDir,FileAttributes.Normal) \ No newline at end of file + File.SetAttributes(repositoryDir,FileAttributes.Normal) diff --git a/src/app/FakeLib/FileHelper.fs b/src/app/FakeLib/FileHelper.fs index 8e7ed6fe311..3d898d74115 100644 --- a/src/app/FakeLib/FileHelper.fs +++ b/src/app/FakeLib/FileHelper.fs @@ -7,6 +7,7 @@ open System.Text open System.Diagnostics /// Performs the given actions on all files and subdirectories +[] let rec recursively dirF fileF (dir : DirectoryInfo) = dir |> subDirectories @@ -18,6 +19,7 @@ let rec recursively dirF fileF (dir : DirectoryInfo) = |> Seq.iter fileF /// Sets the directory readonly +[] let setDirectoryReadOnly readOnly (dir : DirectoryInfo) = if dir.Exists then let isReadOnly = dir.Attributes &&& FileAttributes.ReadOnly = FileAttributes.ReadOnly @@ -25,6 +27,7 @@ let setDirectoryReadOnly readOnly (dir : DirectoryInfo) = if (not readOnly) && not isReadOnly then dir.Attributes <- dir.Attributes &&& (~~~FileAttributes.ReadOnly) /// Sets all files in the directory readonly. +[] let SetDirReadOnly readOnly dir = recursively (setDirectoryReadOnly readOnly) (fun file -> file.IsReadOnly <- readOnly) dir @@ -382,6 +385,7 @@ let GeneratePatch lastReleaseDir patchDir srcFiles = GeneratePatchWithFindOldFileFunction lastReleaseDir patchDir srcFiles (fun a b -> b) /// Copies the file structure recursively. +[] let rec copyRecursive (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite = let files = dir @@ -400,6 +404,7 @@ let rec copyRecursive (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrit |> Seq.toList) @ files /// Copies the file structure recursively. + let CopyRecursive dir outputDir = copyRecursive (directoryInfo dir) (directoryInfo outputDir) /// Moves a single file to the target and overwrites the existing file. diff --git a/src/app/FakeLib/FileSystemHelper.fs b/src/app/FakeLib/FileSystemHelper.fs index fd943dc25e7..3e86bd09406 100644 --- a/src/app/FakeLib/FileSystemHelper.fs +++ b/src/app/FakeLib/FileSystemHelper.fs @@ -8,34 +8,43 @@ open System.IO open System.Runtime.InteropServices /// Creates a DirectoryInfo for the given path. +[] let inline directoryInfo path = new DirectoryInfo(path) /// Creates a FileInfo for the given path. +[] let inline fileInfo path = new FileInfo(path) /// Creates a FileInfo or a DirectoryInfo for the given path +[] let inline fileSystemInfo path : FileSystemInfo = if Directory.Exists path then upcast directoryInfo path else upcast fileInfo path /// Converts a filename to it's full file system name. +[] let inline FullName fileName = Path.GetFullPath fileName /// Gets the directory part of a filename. +[] let inline DirectoryName fileName = Path.GetDirectoryName fileName /// Gets all subdirectories of a given directory. +[] let inline subDirectories (dir : DirectoryInfo) = dir.GetDirectories() /// Gets all files in the directory. +[] let inline filesInDir (dir : DirectoryInfo) = dir.GetFiles() /// Finds all the files in the directory matching the search pattern. +[] let filesInDirMatching pattern (dir : DirectoryInfo) = if dir.Exists then dir.GetFiles pattern else [||] /// Finds all the files in the directory and in all subdirectories matching the search pattern. +[] let filesInDirMatchingRecursive pattern (dir : DirectoryInfo) = if dir.Exists then dir.GetFiles(pattern, SearchOption.AllDirectories) else [||] @@ -77,18 +86,22 @@ let rec normalizeFileName (fileName : string) = .TrimEnd(Path.DirectorySeparatorChar).ToLower() /// Checks if dir1 is a subfolder of dir2. If dir1 equals dir2 the function returns also true. +[] let rec isSubfolderOf (dir2 : DirectoryInfo) (dir1 : DirectoryInfo) = if normalizeFileName dir1.FullName = normalizeFileName dir2.FullName then true else if dir1.Parent = null then false else dir1.Parent |> isSubfolderOf dir2 /// Checks if the file is in a subfolder of the dir. +[] let isInFolder (dir : DirectoryInfo) (fileInfo : FileInfo) = isSubfolderOf dir fileInfo.Directory /// Checks if the directory exists on disk. +[] let directoryExists dir = Directory.Exists dir /// Ensure that directory chain exists. Create necessary directories if necessary. +[] let inline ensureDirExists (dir : DirectoryInfo) = if not dir.Exists then dir.Create() From beb7e5359ef4c11e27383d68d5139c1380438fc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Fri, 22 Sep 2017 12:03:39 +0200 Subject: [PATCH 07/25] Propose additional design guidelines on consistent naming/casing --- help/markdown/contributing.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/help/markdown/contributing.md b/help/markdown/contributing.md index 59341c565c5..e41357e606b 100644 --- a/help/markdown/contributing.md +++ b/help/markdown/contributing.md @@ -107,7 +107,9 @@ to automatically deploy a preconfigured virtual machine. See the [Vagrant docs]( We [learned from our mistakes](fake-fake5-learn-more.html), so we use the following guidelines, **please read them very carefully** (ask if you don't understand any rule): - AutoOpen is no longer used - - we replace `` functions with `.` + - We replace `` functions with `.` + - Use Verbs as much as possible for functions + - In order, to have a more consistent API we propose to always use camelCase naming for functions - We assume the caller is not opening the module but only the global namespaces `Fake.Core`, `Fake.IO`, ... and make sure the code looks nice and structured on the caller side. - For compatibility reasons (migration from legacy). We assume the user doesn't open the global `Fake` namespace. From 9eac86782b50f8b6743c6af5cfe45b691a27c941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Mon, 25 Sep 2017 23:41:30 +0200 Subject: [PATCH 08/25] Normalize and add Obsolete for Directory module --- src/app/Fake.DotNet.MsBuild/MsBuild.fs | 2 +- src/app/Fake.IO.FileSystem/Directory.fs | 26 +++++-------------- src/app/Fake.IO.FileSystem/Shell.fs | 5 +--- src/app/Fake.Tools.Git/Repository.fs | 2 +- src/app/Fake.Windows.Chocolatey/Chocolatey.fs | 2 +- src/app/FakeLib/FileHelper.fs | 2 ++ src/app/FakeLib/FileSystemHelper.fs | 3 +++ 7 files changed, 15 insertions(+), 27 deletions(-) diff --git a/src/app/Fake.DotNet.MsBuild/MsBuild.fs b/src/app/Fake.DotNet.MsBuild/MsBuild.fs index 35d3889edad..77cab3dd98d 100644 --- a/src/app/Fake.DotNet.MsBuild/MsBuild.fs +++ b/src/app/Fake.DotNet.MsBuild/MsBuild.fs @@ -71,7 +71,7 @@ let msBuildExe = /// * just a directory /// if just a directory we can make it the path to a file by Path-Combining the tool name to the directory. let exactPathOrBinaryOnPath tool input = - if Directory.isDirectory input && Directory.Exists input + if Path.isDirectory input && Directory.Exists input then input tool else input diff --git a/src/app/Fake.IO.FileSystem/Directory.fs b/src/app/Fake.IO.FileSystem/Directory.fs index 54e6bfd6954..65a814ea9a4 100644 --- a/src/app/Fake.IO.FileSystem/Directory.fs +++ b/src/app/Fake.IO.FileSystem/Directory.fs @@ -4,20 +4,13 @@ open System.IO module Directory = - /// Creates a directory if it does not exist. - let CreateDir path = - let dir = DirectoryInfo.ofPath path - if not dir.Exists then - // TODO: logfn "Creating %s" dir.FullName - dir.Create() - else () //TODO: logfn "%s already exists." dir.FullName - /// Checks if the given directory exists. If not then this functions creates the directory. let inline ensure dir = - if not (Directory.Exists dir) then - Directory.CreateDirectory dir |> ignore - - let isDirectory path = Path.isDirectory path + dir |> DirectoryInfo.ofPath |> DirectoryInfo.ensure + + /// Creates a directory if it does not exist. + [] + let create = ensure /// Gets the first file in the directory matching the search pattern as an option value. let tryFindFirstMatchingFile pattern dir = @@ -38,12 +31,5 @@ module Directory = let delete path = let dir = DirectoryInfo.ofPath path if dir.Exists then - // set all files readonly = false - DirectoryInfo.setReadOnly false dir - //!!"/**/*.*" - //|> SetBaseDir dir.FullName - //|> (SetReadOnly false) - //logfn "Deleting %s" dir.FullName + DirectoryInfo.setReadOnlyRecursive false dir dir.Delete true - else () //TODO: logfn "%s does not exist." dir.FullName - diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index 5fcc80af275..e685b2809b5 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -182,9 +182,6 @@ module Shell = /// Deletes multiple directories let DeleteDirs dirs = Seq.iter Directory.delete dirs - /// Compat - let ensureDirectory dir = Directory.ensure dir - /// Appends all given files to one file. /// ## Parameters /// @@ -360,7 +357,7 @@ module Shell = else File.Delete f /// Creates a directory if it doesn't exist. - let mkdir path = Directory.CreateDir path + let mkdir path = Directory.create path /// /// Like "cp -r" in a shell. Copies a file or directory recursively. diff --git a/src/app/Fake.Tools.Git/Repository.fs b/src/app/Fake.Tools.Git/Repository.fs index 91794256abc..0f4c757a62b 100644 --- a/src/app/Fake.Tools.Git/Repository.fs +++ b/src/app/Fake.Tools.Git/Repository.fs @@ -67,7 +67,7 @@ let fullclean repositoryDir = Directory.GetDirectories repositoryDir |> Seq.iter deleteDirs else - Directory.CreateDir repositoryDir + Directory.create repositoryDir // set writeable File.SetAttributes(repositoryDir,FileAttributes.Normal) diff --git a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs index 9a5af7d5fef..7919b1f22a6 100644 --- a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs +++ b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs @@ -372,7 +372,7 @@ module Fake.Windows.Choco tempFolder.Create() - Directory.CreateDir (tempFolder.FullName @@ "tools") + Directory.create (tempFolder.FullName @@ "tools") tempFolder.FullName diff --git a/src/app/FakeLib/FileHelper.fs b/src/app/FakeLib/FileHelper.fs index 3d898d74115..a97d6b64bfb 100644 --- a/src/app/FakeLib/FileHelper.fs +++ b/src/app/FakeLib/FileHelper.fs @@ -42,6 +42,7 @@ let SetReadOnly readOnly (files : string seq) = |> setDirectoryReadOnly readOnly) /// Deletes a directory if it exists. +[] let DeleteDir path = let dir = directoryInfo path if dir.Exists then @@ -54,6 +55,7 @@ let DeleteDir path = else logfn "%s does not exist." dir.FullName /// Creates a directory if it does not exist. +[] let CreateDir path = let dir = directoryInfo path if not dir.Exists then diff --git a/src/app/FakeLib/FileSystemHelper.fs b/src/app/FakeLib/FileSystemHelper.fs index 3e86bd09406..ace4ac94bb7 100644 --- a/src/app/FakeLib/FileSystemHelper.fs +++ b/src/app/FakeLib/FileSystemHelper.fs @@ -50,6 +50,7 @@ let filesInDirMatchingRecursive pattern (dir : DirectoryInfo) = else [||] /// Gets the first file in the directory matching the search pattern as an option value. +[] let TryFindFirstMatchingFile pattern dir = dir |> directoryInfo @@ -59,6 +60,7 @@ let TryFindFirstMatchingFile pattern dir = else (Seq.head files).FullName |> Some /// Gets the first file in the directory matching the search pattern or throws an error if nothing was found. +[] let FindFirstMatchingFile pattern dir = match TryFindFirstMatchingFile pattern dir with | Some x -> x @@ -106,6 +108,7 @@ let inline ensureDirExists (dir : DirectoryInfo) = if not dir.Exists then dir.Create() /// Checks if the given directory exists. If not then this functions creates the directory. +[] let inline ensureDirectory dir = directoryInfo dir |> ensureDirExists /// Detects whether the given path is a directory. From 8be5e661bff4e77bb1c226e4ff8f7185563c271e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 26 Sep 2017 21:55:18 +0200 Subject: [PATCH 09/25] Fix tests (switched 2 parameters when removing duplicate functions in DirectoryInfo) --- src/app/Fake.IO.FileSystem/Shell.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index e685b2809b5..5569b619421 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -288,7 +288,7 @@ module Shell = let CopyRecursive2 method dir outputDir = let dirInfo = DirectoryInfo.ofPath dir let outputDirInfo = DirectoryInfo.ofPath outputDir - let copyRecursiveWithFilter f = DirectoryInfo.copyRecursiveToWithFilter false f dirInfo outputDirInfo + let copyRecursiveWithFilter f = DirectoryInfo.copyRecursiveToWithFilter false f outputDirInfo dirInfo match method with | Overwrite -> DirectoryInfo.copyRecursiveTo true dirInfo outputDirInfo | NoOverwrite -> DirectoryInfo.copyRecursiveTo false dirInfo outputDirInfo From 20f7d25222bd461e6f1beef051749d2f1f3a1eb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 26 Sep 2017 22:31:43 +0200 Subject: [PATCH 10/25] Normalize naming and add Obsolete for File module --- src/app/Fake.Core.String/String.fs | 2 +- src/app/Fake.DotNet.NuGet/NuGet.fs | 4 +- src/app/Fake.DotNet.Paket/PaketTemplate.fs | 2 +- src/app/Fake.DotNet.Testing.NUnit/Xml.fs | 2 +- src/app/Fake.IO.FileSystem/File.fs | 68 +++++++++---------- src/app/Fake.IO.FileSystem/Shell.fs | 6 +- src/app/Fake.IO.FileSystem/Templates.fs | 4 +- src/app/Fake.Tools.Git/CommitMessage.fs | 4 +- src/app/Fake.Windows.Chocolatey/Chocolatey.fs | 6 +- src/app/FakeLib/FileHelper.fs | 5 ++ src/app/FakeLib/FileSystemHelper.fs | 3 + src/app/FakeLib/StringHelper.fs | 22 +++--- 12 files changed, 65 insertions(+), 63 deletions(-) diff --git a/src/app/Fake.Core.String/String.fs b/src/app/Fake.Core.String/String.fs index 07ba74f91f2..90ef691bd6c 100644 --- a/src/app/Fake.Core.String/String.fs +++ b/src/app/Fake.Core.String/String.fs @@ -186,4 +186,4 @@ module Operators = let (>=>) pattern replacement text = regex_replace pattern replacement text /// Determines if a text matches a given regex pattern. - let (>**) pattern text = (getRegEx pattern).IsMatch text \ No newline at end of file + let (>**) pattern text = (getRegEx pattern).IsMatch text diff --git a/src/app/Fake.DotNet.NuGet/NuGet.fs b/src/app/Fake.DotNet.NuGet/NuGet.fs index 97a04cc084e..a19aa81df63 100644 --- a/src/app/Fake.DotNet.NuGet/NuGet.fs +++ b/src/app/Fake.DotNet.NuGet/NuGet.fs @@ -390,7 +390,7 @@ let NuGetPack setParams nuspecOrProjectFile = match (createNuSpecFromTemplateIfNotProjFile parameters nuspecOrProjectFile) with | Some nuspecTemplateFile -> pack parameters nuspecTemplateFile - File.DeleteFile nuspecTemplateFile + File.delete nuspecTemplateFile | None -> pack parameters nuspecOrProjectFile with exn -> (if exn.InnerException <> null then exn.Message + "\r\n" + exn.InnerException.Message @@ -425,7 +425,7 @@ let NuGet setParams nuspecOrProjectFile = match (createNuSpecFromTemplateIfNotProjFile parameters nuspecOrProjectFile) with | Some nuspecTemplateFile -> pack parameters nuspecTemplateFile - File.DeleteFile nuspecTemplateFile + File.delete nuspecTemplateFile | None -> pack parameters nuspecOrProjectFile if parameters.Publish then diff --git a/src/app/Fake.DotNet.Paket/PaketTemplate.fs b/src/app/Fake.DotNet.Paket/PaketTemplate.fs index f2580bab6a5..1a18f484343 100644 --- a/src/app/Fake.DotNet.Paket/PaketTemplate.fs +++ b/src/app/Fake.DotNet.Paket/PaketTemplate.fs @@ -280,4 +280,4 @@ let PaketTemplate setParams = | Some v -> v | _ -> "paket.template" - File.WriteStringToFile false filePath (Rendering.createLines parameters) + File.writeString false filePath (Rendering.createLines parameters) diff --git a/src/app/Fake.DotNet.Testing.NUnit/Xml.fs b/src/app/Fake.DotNet.Testing.NUnit/Xml.fs index 5a912c6afdf..01704546900 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/Xml.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/Xml.fs @@ -217,4 +217,4 @@ module internal NUnitMerge = getXDocs directory filter |> mergeXDocs |> sprintf "%O" - |> File.WriteStringToFile false outfile \ No newline at end of file + |> File.writeString false outfile diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index cfb0d3aabad..b3464606ff2 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -7,15 +7,17 @@ open Fake.Core open Operators module File = + /// Checks if the file exists on disk. + let exists fileName = File.Exists fileName + /// Raises an exception if the file doesn't exist on disk. - let checkFileExists fileName = - if not <| File.Exists fileName then new FileNotFoundException(sprintf "File %s does not exist." fileName) |> raise + let checkExists fileName = + if not <| exists fileName then + FileNotFoundException(sprintf "File %s does not exist." fileName) |> raise /// Checks if all given files exist. - let allFilesExist files = Seq.forall File.Exists files + let allExist files = Seq.forall File.Exists files - let isFile path = Path.isFile path - /// Get the version a file. /// ## Parameters /// @@ -26,24 +28,19 @@ module File = |> fun x -> x.FileVersion.ToString() /// Creates a file if it does not exist. - let CreateFile fileName = + let create fileName = let file = FileInfo.ofPath fileName if not file.Exists then - //TODO: logfn "Creating %s" file.FullName - use newFile = file.Create() - () - else () //TODO: logfn "%s already exists." file.FullName + file.Create() |> ignore /// Deletes a file if it exists. - let DeleteFile fileName = + let delete fileName = let file = FileInfo.ofPath fileName if file.Exists then - //TODO: logfn "Deleting %s" file.FullName file.Delete() - else () // TODO: logfn "%s does not exist." file.FullName /// Deletes the given files. - let DeleteFiles files = Seq.iter DeleteFile files + let deleteAll files = Seq.iter delete files /// Active Pattern for determining file extension. let (|EndsWith|_|) extension (file : string) = @@ -51,73 +48,70 @@ module File = else None /// Reads a file line by line - let ReadWithEncoding (encoding : Encoding) (file : string) = + let readWithEncoding (encoding : Encoding) (file : string) = seq { use stream = File.OpenRead(file) use textReader = new StreamReader(stream, encoding) while not textReader.EndOfStream do yield textReader.ReadLine() } - let Read (file : string) = ReadWithEncoding (Encoding.UTF8) file + let read (file : string) = readWithEncoding (Encoding.UTF8) file /// Reads the first line of a file. This can be helpful to read a password from file. - let ReadLineWithEncoding (encoding:Encoding) (file : string) = + let readLineWithEncoding (encoding:Encoding) (file : string) = use stream = File.OpenRead file use sr = new StreamReader(stream, encoding) sr.ReadLine() /// Reads the first line of a file. This can be helpful to read a password from file. - let ReadLine(file : string) = ReadLineWithEncoding Encoding.UTF8 file + let readLine(file : string) = readLineWithEncoding Encoding.UTF8 file /// Writes a file line by line - let WriteToFileWithEncoding (encoding:Encoding) append fileName (lines : seq) = + let writeWithEncoding (encoding:Encoding) append fileName (lines : seq) = let fi = FileInfo.ofPath fileName use file = fi.Open(if append then FileMode.Append else FileMode.Create) use writer = new StreamWriter(file, encoding) lines |> Seq.iter writer.WriteLine - let WriteToFile append fileName (lines : seq) = WriteToFileWithEncoding Encoding.UTF8 append fileName lines - - let Write file lines = WriteToFile false file lines - let Append file lines = WriteToFile true file lines - + let write append fileName (lines : seq) = writeWithEncoding Encoding.UTF8 append fileName lines + /// Writes a byte array to a file - let WriteBytesToFile file bytes = File.WriteAllBytes(file, bytes) + let writeBytes file bytes = File.WriteAllBytes(file, bytes) /// Writes a string to a file - let WriteStringToFileWithEncoding (encoding:Encoding) append fileName (text : string) = + let writeStringWithEncoding (encoding:Encoding) append fileName (text : string) = let fi = FileInfo.ofPath fileName use file = fi.Open(if append then FileMode.Append else FileMode.Create) use writer = new StreamWriter(file, encoding) writer.Write text - let WriteStringToFile append fileName (text : string) = WriteStringToFileWithEncoding Encoding.UTF8 append fileName text + let writeString append fileName (text : string) = writeStringWithEncoding Encoding.UTF8 append fileName text /// Replaces the file with the given string - let ReplaceFile fileName text = + let replaceContent fileName text = let fi = FileInfo.ofPath fileName if fi.Exists then fi.IsReadOnly <- false fi.Delete() - WriteStringToFile false fileName text + writeString false fileName text /// Writes a file line by line - let WriteFile file lines = WriteToFile false file lines + let writeNew file lines = write false file lines /// Appends all lines to a file line by line - let AppendToFile file lines = WriteToFile true file lines + let append file lines = write true file lines /// Reads a file as one text - let inline ReadFileAsStringWithEncoding encoding file = File.ReadAllText(file, encoding) - let inline ReadFileAsString file = File.ReadAllText(file, Encoding.UTF8) + let inline readAsStringWithEncoding encoding file = File.ReadAllText(file, encoding) + let inline readAsString file = File.ReadAllText(file, Encoding.UTF8) /// Reads a file as one array of bytes - let ReadFileAsBytes file = File.ReadAllBytes file + let readAsBytes file = File.ReadAllBytes file /// Replaces the text in the given file - let ReplaceInFile replaceF fileName = + let applyReplace replaceF fileName = fileName - |> ReadFileAsString + |> readAsString |> replaceF - |> ReplaceFile fileName + |> replaceContent fileName diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index 5569b619421..a90f7fae2e4 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -192,7 +192,7 @@ module Shell = if fi.Exists then failwithf "File %s already exists." (fi.FullName) use file = fi.Open(FileMode.Create) use writer = new StreamWriter(file, encoding) - files |> Seq.iter (File.Read >> Seq.iter writer.WriteLine) + files |> Seq.iter (File.read >> Seq.iter writer.WriteLine) //() //TODO: logVerbosefn "Appending %s to %s" file fi.FullName //) @@ -349,12 +349,12 @@ module Shell = /// Deletes a file if it exists - let rm fileName = File.DeleteFile fileName + let rm fileName = File.delete fileName /// Like "rm -rf" in a shell. Removes files recursively, ignoring nonexisting files let rm_rf f = if Directory.Exists f then Directory.delete f - else File.Delete f + else File.delete f /// Creates a directory if it doesn't exist. let mkdir path = Directory.create path diff --git a/src/app/Fake.IO.FileSystem/Templates.fs b/src/app/Fake.IO.FileSystem/Templates.fs index 0f3778039ca..da7654a9320 100644 --- a/src/app/Fake.IO.FileSystem/Templates.fs +++ b/src/app/Fake.IO.FileSystem/Templates.fs @@ -3,7 +3,7 @@ module Fake.IO.FileSystem.Templates /// Loads all templates (lazy - line by line!) -let loadTemplates seq = Seq.map (fun fileName -> fileName, File.Read fileName) seq +let loadTemplates seq = Seq.map (fun fileName -> fileName, File.read fileName) seq /// Replaces a bunch of the keywords in all files (lazy - line by line!) let replaceKeywords replacements = @@ -16,7 +16,7 @@ let replaceKeywords replacements = sb.ToString())) /// Saves all files (lazy - file by file!) -let saveFiles = Seq.iter (fun (fileName, file) -> File.WriteToFile false fileName (Seq.toList file)) +let saveFiles = Seq.iter (fun (fileName, file) -> File.write false fileName (Seq.toList file)) /// Replaces the templates with the given replacements let processTemplates replacements files = diff --git a/src/app/Fake.Tools.Git/CommitMessage.fs b/src/app/Fake.Tools.Git/CommitMessage.fs index 90533f4264a..92236c2fb5e 100644 --- a/src/app/Fake.Tools.Git/CommitMessage.fs +++ b/src/app/Fake.Tools.Git/CommitMessage.fs @@ -19,7 +19,7 @@ let getCommitMessageFileInfos repositoryDir = /// Gets the commit message let getCommitMessage repositoryDir = match getCommitMessageFileInfos repositoryDir |> List.filter (fun fi -> fi.Exists) with - | fi::_ -> File.ReadFileAsString fi.FullName + | fi::_ -> File.readAsString fi.FullName | _ -> "" /// Sets the commit message @@ -30,4 +30,4 @@ let setMessage repositoryDir text = else use stream = File.OpenWrite(messageFile.FullName) use textWriter = new StreamWriter(stream, new UTF8Encoding(true)) - textWriter.Write text \ No newline at end of file + textWriter.Write text diff --git a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs index 7919b1f22a6..756f74b5747 100644 --- a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs +++ b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs @@ -570,7 +570,7 @@ module Fake.Windows.Choco |> appendWithoutQuotes "" |> toText - File.WriteStringToFile false specFile nuspecContent + File.writeString false specFile nuspecContent Trace.tracefn "Created nuspec file %s" specFile specFile @@ -617,7 +617,7 @@ module Fake.Windows.Choco |> appendIfTrueWithoutQuotes (isNotNullOrEmpty parameters.Checksum64) ("-Checksum64Type " + checksumTypeToString parameters.Checksum64Type) |> toText - File.WriteStringToFile false outputPath installContent + File.writeString false outputPath installContent Trace.tracefn "Created chocolateyInstall.ps1 at %s" outputPath @@ -663,7 +663,7 @@ module Fake.Windows.Choco | _ -> appendWithoutQuotes "Uninstall-ChocolateyPackage $packageName $installerType $silentArgs $file" |> toText - File.WriteStringToFile false outputPath uninstallContent + File.writeString false outputPath uninstallContent Trace.tracefn "Created chocolateyUninstall.ps1 at %s" outputPath diff --git a/src/app/FakeLib/FileHelper.fs b/src/app/FakeLib/FileHelper.fs index a97d6b64bfb..529d250859d 100644 --- a/src/app/FakeLib/FileHelper.fs +++ b/src/app/FakeLib/FileHelper.fs @@ -64,6 +64,7 @@ let CreateDir path = else logfn "%s already exists." dir.FullName /// Creates a file if it does not exist. +[] let CreateFile fileName = let file = fileInfo fileName if not file.Exists then @@ -73,6 +74,7 @@ let CreateFile fileName = else logfn "%s already exists." file.FullName /// Deletes a file if it exists. +[] let DeleteFile fileName = let file = fileInfo fileName if file.Exists then @@ -81,6 +83,7 @@ let DeleteFile fileName = else logfn "%s does not exist." file.FullName /// Deletes the given files. +[] let DeleteFiles files = Seq.iter DeleteFile files /// Active pattern which discriminates between files and directories. @@ -91,6 +94,7 @@ let (|File|Directory|) (fileSysInfo : FileSystemInfo) = | _ -> failwith "No file or directory given." /// Active Pattern for determining file extension. +[] let (|EndsWith|_|) extension (file : string) = if file.EndsWith extension then Some() else None @@ -468,6 +472,7 @@ let RegexReplaceInFilesWithEncoding pattern (replacement:string) encoding files /// ## Parameters /// /// - 'fileName' - Name of file from which the version is retrieved. The path can be relative. +[] let FileVersion(fileName : string) = FullName fileName |> FileVersionInfo.GetVersionInfo diff --git a/src/app/FakeLib/FileSystemHelper.fs b/src/app/FakeLib/FileSystemHelper.fs index ace4ac94bb7..6928fedbfb1 100644 --- a/src/app/FakeLib/FileSystemHelper.fs +++ b/src/app/FakeLib/FileSystemHelper.fs @@ -73,13 +73,16 @@ let currentDirectory = Path.GetFullPath "." let fullAssemblyPath = System.Reflection.Assembly.GetAssembly(typeof).Location /// Checks if the file exists on disk. +[] let fileExists fileName = File.Exists fileName /// Raises an exception if the file doesn't exist on disk. +[] let checkFileExists fileName = if not <| fileExists fileName then new FileNotFoundException(sprintf "File %s does not exist." fileName) |> raise /// Checks if all given files exist. +[] let allFilesExist files = Seq.forall fileExists files /// Normalizes a filename. diff --git a/src/app/FakeLib/StringHelper.fs b/src/app/FakeLib/StringHelper.fs index fc12641a454..e89861a2816 100644 --- a/src/app/FakeLib/StringHelper.fs +++ b/src/app/FakeLib/StringHelper.fs @@ -234,7 +234,7 @@ let liftString x = else Some x /// Reads a file line by line -[] +[] let ReadFile(file : string) = seq { use textReader = new StreamReader(file, encoding) @@ -243,13 +243,13 @@ let ReadFile(file : string) = } /// Reads the first line of a file. This can be helpful to read a password from file. -[] +[] let ReadLine(file : string) = use sr = new StreamReader(file, Encoding.Default) sr.ReadLine() /// Writes a file line by line -[] +[] let WriteToFile append fileName (lines : seq) = let fi = fileInfo fileName use writer = new StreamWriter(fileName, append && fi.Exists, encoding) @@ -269,18 +269,18 @@ let rec NormalizeVersion(version : string) = else version /// Writes a byte array to a file -[] +[] let WriteBytesToFile file bytes = File.WriteAllBytes(file, bytes) /// Writes a string to a file -[] +[] let WriteStringToFile append fileName (text : string) = let fi = fileInfo fileName use writer = new StreamWriter(fileName, append && fi.Exists, encoding) writer.Write text /// Replaces the file with the given string -[] +[] let ReplaceFile fileName text = let fi = fileInfo fileName if fi.Exists then @@ -292,19 +292,19 @@ let ReplaceFile fileName text = let Colon = ',' /// Writes a file line by line -[] +[] let WriteFile file lines = WriteToFile false file lines /// Appends all lines to a file line by line -[] +[] let AppendToFile file lines = WriteToFile true file lines /// Reads a file as one text -[] +[] let inline ReadFileAsString file = File.ReadAllText(file, encoding) /// Reads a file as one array of bytes -[] +[] let ReadFileAsBytes file = File.ReadAllBytes file /// Replaces any occurence of the currentDirectory with . @@ -316,7 +316,7 @@ let inline shortenCurrentDirectory value = replace currentDirectory "." value let inline (<*) prefix text = startsWith prefix text /// Replaces the text in the given file -[] +[] let ReplaceInFile replaceF fileName = fileName |> ReadFileAsString From cce4762240c62b9f9e9d142007645be08fffb1d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Tue, 26 Sep 2017 23:29:01 +0200 Subject: [PATCH 11/25] Fix build waiting releas of breaking changes --- build.fsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index 0d43896b7c8..fe4d0b144d8 100644 --- a/build.fsx +++ b/build.fsx @@ -25,6 +25,11 @@ open System.Reflection #endif +// TODO Remove '#load' once released +#load "src/app/Fake.IO.FileSystem/File.fs" +#load "src/app/Fake.IO.FileSystem/DirectoryInfo.fs" +#load "src/app/Fake.IO.FileSystem/Directory.fs" + open System.IO open Fake.Core open Fake.Tools @@ -120,7 +125,7 @@ Target.Create "Clean" (fun _ -> //-- "src/*/*/obj/*.props" //-- "src/*/*/obj/*.paket.references.cached" //-- "src/*/*/obj/*.NuGet.Config" - |> File.DeleteFiles + |> File.deleteAll Shell.CleanDirs [buildDir; testDir; docsDir; apidocsDir; nugetDncDir; nugetLegacyDir; reportDir] @@ -134,7 +139,7 @@ Target.Create "RenameFSharpCompilerService" (fun _ -> for framework in ["netstandard1.6"; "net45"] do let dir = __SOURCE_DIRECTORY__ "packages"packDir"lib"framework let targetFile = dir "FAKE.FSharp.Compiler.Service.dll" - File.DeleteFile targetFile + File.Delete targetFile #if DOTNETCORE let reader = From 8d293b899bf9ed5f8e76e43bb6a261f22f118874 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Wed, 27 Sep 2017 16:23:50 +0200 Subject: [PATCH 12/25] Fix failed build on BootstrapTest --- src/app/Fake.IO.FileSystem/File.fs | 3 +++ src/app/Fake.IO.FileSystem/Shell.fs | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index b3464606ff2..b44f03d2fb6 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -6,6 +6,9 @@ open System.IO open Fake.Core open Operators +module FileFilter = + let allFiles file = true + module File = /// Checks if the file exists on disk. let exists fileName = File.Exists fileName diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index a90f7fae2e4..0d796eb3f72 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -267,8 +267,8 @@ module Shell = /// Copies the file structure recursively. - let CopyRecursive dir outputDir overWrite = DirectoryInfo.copyRecursiveTo overWrite outputDir dir - let CopyRecursiveTo overWrite outputDir dir = DirectoryInfo.copyRecursiveTo overWrite outputDir dir + let CopyRecursive dir outputDir overWrite = DirectoryInfo.copyRecursiveTo overWrite (DirectoryInfo.ofPath outputDir) (DirectoryInfo.ofPath dir) + let inline CopyRecursiveTo overWrite outputDir dir = CopyRecursive dir outputDir overWrite type CopyRecursiveMethod = | Overwrite From 13a8c33f2988b6795c54117aa19516218b3a1136 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Bouillier?= Date: Wed, 27 Sep 2017 16:25:58 +0200 Subject: [PATCH 13/25] Use new API in build.fsx --- build.fsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/build.fsx b/build.fsx index fe4d0b144d8..5f4c3c7b309 100644 --- a/build.fsx +++ b/build.fsx @@ -298,8 +298,8 @@ Target.Create "GenerateDocs" (fun _ -> let layoutroots = [ "./help/templates"; "./help/templates/reference" ] Shell.CopyDir (docsDir) "help/content" FileFilter.allFiles - File.WriteStringToFile false "./docs/.nojekyll" "" - File.WriteStringToFile false "./docs/CNAME" "fake.build" + File.writeString false "./docs/.nojekyll" "" + File.writeString false "./docs/CNAME" "fake.build" //CopyDir (docsDir @@ "pics") "help/pics" FileFilter.allFiles Shell.Copy (source @@ "markdown") ["RELEASE_NOTES.md"] @@ -336,7 +336,7 @@ Target.Create "GenerateDocs" (fun _ -> -- "./build/**/Fake.IIS.dll" -- "./build/**/Fake.Deploy.Lib.dll" - Shell.ensureDirectory apidocsDir + Directory.ensure apidocsDir dllFiles |> FSFormatting.CreateDocsForDlls (fun s -> { s with @@ -487,7 +487,7 @@ Target.Create "SourceLink" (fun _ -> ) Target.Create "ILRepack" (fun _ -> - Directory.CreateDir buildMergedDir + Directory.ensure buildMergedDir let internalizeIn filename = let toPack = @@ -508,7 +508,7 @@ Target.Create "ILRepack" (fun _ -> internalizeIn "FAKE.exe" !! (buildDir "FSharp.Compiler.Service.**") - |> Seq.iter File.DeleteFile + |> Seq.iter File.delete Shell.DeleteDir buildMergedDir ) @@ -541,7 +541,7 @@ Target.Create "CreateNuGet" (fun _ -> Shell.CleanDir nugetLibDir Shell.DeleteDir nugetLibDir - File.DeleteFile "./build/FAKE.Gallio/Gallio.dll" + File.delete "./build/FAKE.Gallio/Gallio.dll" let deleteFCS _ = //!! (dir "FSharp.Compiler.Service.**") @@ -569,7 +569,7 @@ Target.Create "CreateNuGet" (fun _ -> | _ -> Shell.CopyDir nugetToolsDir (buildDir @@ package) FileFilter.allFiles Shell.CopyTo nugetToolsDir additionalFiles - !! (nugetToolsDir @@ "*.srcsv") |> File.DeleteFiles + !! (nugetToolsDir @@ "*.srcsv") |> File.deleteAll let setParams (p:NuGet.NuGet.NuGetParams) = {p with @@ -632,7 +632,7 @@ Target.Create "DotnetRestore" (fun _ -> // Workaround bug where paket integration doesn't generate // .nuget\packages\.tools\dotnet-compile-fsc\1.0.0-preview2-020000\netcoreapp1.0\dotnet-compile-fsc.deps.json let t = Path.GetFullPath "workaround" - Shell.ensureDirectory t + Directory.ensure t Cli.Dotnet { Cli.DotnetOptions.Default with WorkingDirectory = t } "new console --language f#" |> ignore Cli.Dotnet { Cli.DotnetOptions.Default with WorkingDirectory = t } "restore" @@ -645,7 +645,7 @@ Target.Create "DotnetRestore" (fun _ -> !! "lib/nupgks/**/*.nupkg" |> Seq.iter (fun file -> let dir = nugetDncDir //@@ "dotnetcore" - Shell.ensureDirectory dir + Directory.ensure dir File.Copy(file, dir @@ Path.GetFileName file, true)) let result = Cli.Dotnet { Cli.DotnetOptions.Default with WorkingDirectory = root } "sln src/Fake-netcore.sln list" @@ -747,7 +747,7 @@ Target.Create "DotnetCoreCreateZipPackages" (fun _ -> Target.Create "DotnetCoreCreateChocolateyPackage" (fun _ -> // !! "" - Shell.ensureDirectory "nuget/dotnetcore/chocolatey" + Directory.ensure "nuget/dotnetcore/chocolatey" Choco.PackFromTemplate (fun p -> { p with PackageId = "fake" From c5f963bb335382bdc9b9062e47850c7e9c60c09b Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 30 Sep 2017 14:52:58 +0200 Subject: [PATCH 14/25] update contributing.md --- help/markdown/contributing.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/help/markdown/contributing.md b/help/markdown/contributing.md index 59341c565c5..1a7a3a86d6a 100644 --- a/help/markdown/contributing.md +++ b/help/markdown/contributing.md @@ -52,6 +52,15 @@ to automatically deploy a preconfigured virtual machine. See the [Vagrant docs]( > Note: The vagrant file might be outdated at this time, please help updating it and removing this banner. +* Windows Subsystem for Linux / Ubuntu: + - Install Mono, as of today 2017-09-30 you need at least alpha to have the msbuild package (http://www.mono-project.com/download/beta/#download-lin) + - `apt-get install msbuild mono-complete` + - `apt-cache search libunwind` + - `# apt-get Install the libunwind runtime (one of the search results)` + - `apt-cache search libcurl # Install` + - `# apt-get Install the libcurl library (one of the search results)` + - `./build.sh` + ### Programming * Checkout the `master` branch. From 6b384f6b2c63bd4ebd25ebf4ef1fef3e67afb06f Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 30 Sep 2017 14:54:09 +0200 Subject: [PATCH 15/25] release notes --- RELEASE_NOTES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index a7aa31bfdfb..1eb4938d1da 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +#### 5.0.0-beta004 - 30.09.2017 +* BUILD: Remove hardcoded paths to FSharpTargets, replace with FSharp.Compiler.Tools - https://github.com/fsharp/FAKE/pull/1693 + + #### 5.0.0-beta003 - 26.09.2017 * ENHANCEMENT: Fix some migration warnings, Docs and bugs - https://github.com/fsharp/FAKE/pull/1686 From a708f2172aae9a095b80564c88cb9bdbe670e178 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 1 Oct 2017 20:03:43 +0200 Subject: [PATCH 16/25] new paket version --- help/markdown/contributing.md | 2 +- src/app/Fake.Core.Xml/Xml.fs | 4 ++-- src/app/Fake.Runtime/FakeRuntime.fs | 6 +++--- src/app/Fake.netcore/Program.fs | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/help/markdown/contributing.md b/help/markdown/contributing.md index 1a7a3a86d6a..7c750d46b20 100644 --- a/help/markdown/contributing.md +++ b/help/markdown/contributing.md @@ -52,7 +52,7 @@ to automatically deploy a preconfigured virtual machine. See the [Vagrant docs]( > Note: The vagrant file might be outdated at this time, please help updating it and removing this banner. -* Windows Subsystem for Linux / Ubuntu: +* Ubuntu / Windows Subsystem for Linux: - Install Mono, as of today 2017-09-30 you need at least alpha to have the msbuild package (http://www.mono-project.com/download/beta/#download-lin) - `apt-get install msbuild mono-complete` - `apt-cache search libunwind` diff --git a/src/app/Fake.Core.Xml/Xml.fs b/src/app/Fake.Core.Xml/Xml.fs index 590dfc4f456..3fa5a3a2212 100644 --- a/src/app/Fake.Core.Xml/Xml.fs +++ b/src/app/Fake.Core.Xml/Xml.fs @@ -85,7 +85,7 @@ let CDataElement elementName data (writer : XmlWriter) = /// Gets the attribute with the given name from the given XmlNode let getAttribute (name : string) (node : #XmlNode) = let attribute = node.Attributes.[name] - if attribute <> null then attribute.Value else null + if not (isNull attribute) then attribute.Value else null /// Gets a sequence of all child nodes for the given XmlNode let getChilds (node : #XmlNode) = @@ -129,7 +129,7 @@ let XPathReplace xpath value (doc : XmlDocument) = /// Replaces the inner text of an xml node in the XML document specified by a XPath expression. let XPathReplaceInnerText xpath innerTextValue (doc : XmlDocument) = let node = doc.SelectSingleNode xpath - if node = null then failwithf "XML node '%s' not found" xpath + if isNull node then failwithf "XML node '%s' not found" xpath else node.InnerText <- innerTextValue doc diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index ed890340e0f..55b7245ec77 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -88,10 +88,10 @@ type AssemblyData = let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependencies) group = let groupStr = match group with Some g -> g | None -> "Main" let groupName = Paket.Domain.GroupName (groupStr) - #if DOTNETCORE - let framework = Paket.FrameworkIdentifier.DotNetStandard (Paket.DotNetStandardVersion.V1_6) +#if DOTNETCORE + let framework = Paket.FrameworkIdentifier.DotNetStandard (Paket.DotNetStandardVersion.V2_0) #else - let framework = Paket.FrameworkIdentifier.DotNetFramework (Paket.FrameworkVersion.V4_5) + let framework = Paket.FrameworkIdentifier.DotNetFramework (Paket.FrameworkVersion.V4_6) #endif let lockFilePath = Paket.DependenciesFile.FindLockfile paketDependencies.DependenciesFile let parent s = Path.GetDirectoryName s diff --git a/src/app/Fake.netcore/Program.fs b/src/app/Fake.netcore/Program.fs index f9b0d640451..8fde8903385 100644 --- a/src/app/Fake.netcore/Program.fs +++ b/src/app/Fake.netcore/Program.fs @@ -69,6 +69,7 @@ let handleCli (results:ParseResults) = let printDetails = verbLevel > 0 if verbLevel > 1 then Paket.Logging.verbose <- true + Paket.Logging.verboseWarnings <- true Paket.Utils.autoAnswer <- Some true use consoleTrace = Paket.Logging.event.Publish |> Observable.subscribe Paket.Logging.traceToConsole From 3582e9d7283e47501b3da3bee5a353b157305ade Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 1 Oct 2017 20:14:20 +0200 Subject: [PATCH 17/25] paket update --- .gitignore | 1 + paket.dependencies | 2 +- paket.lock | 5783 +++++++++-------- src/app/FAKE/FAKE.fsproj | 196 +- .../Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj | 274 +- src/app/Fake.Deploy/Fake.Deploy.fsproj | 278 +- .../Fake.Experimental.fsproj | 168 +- .../Fake.FluentMigrator.fsproj | 168 +- src/app/Fake.Gallio/Fake.Gallio.fsproj | 168 +- src/app/Fake.IIS/Fake.IIS.fsproj | 168 +- src/app/Fake.SQL/Fake.SQL.fsproj | 168 +- src/app/FakeLib/FakeLib.fsproj | 318 +- .../Fake.Deploy.Web.Abstractions.fsproj | 168 +- .../Fake.Deploy.Web.File.fsproj | 242 +- .../Fake.Deploy.Web.RavenDb.fsproj | 168 +- .../Fake.Deploy.Web/Fake.Deploy.Web.fsproj | 242 +- .../Fake.Core.IntegrationTests.fsproj | 202 +- src/test/FsCheck.Fake/FsCheck.Fake.fsproj | 212 +- .../ProjectTestFiles/CSharpApp.csproj | 168 +- .../ProjectTestFiles/FakeLib.fsproj | 170 +- .../ProjectTestFiles/FakeLib2.csproj | 170 +- .../ProjectTestFiles/FakeLib2.fsproj | 170 +- .../ProjectTestFiles/FakeLib3.csproj | 170 +- .../ProjectTestFiles/FakeLib3.fsproj | 170 +- .../ProjectTestFiles/FakeLib4.fsproj | 170 +- .../ProjectTestFiles/FakeLib5.fsproj | 170 +- .../ProjectTestFiles/FakeLib6.fsproj | 170 +- src/test/Test.FAKECore/Test.FAKECore.csproj | 170 +- .../TestData/fake_no_template.csproj | 170 +- .../Test.Fake.Deploy.Web.File.fsproj | 202 +- .../Test.Fake.Deploy.Web.fsproj | 250 +- .../Test.Fake.Deploy/Test.Fake.Deploy.csproj | 272 +- src/test/Test.Git/Test.Git.csproj | 168 +- 33 files changed, 5851 insertions(+), 5835 deletions(-) diff --git a/.gitignore b/.gitignore index 14ea2406bbf..c33a7c2fd7d 100644 --- a/.gitignore +++ b/.gitignore @@ -60,6 +60,7 @@ tools/SourceLink.Fake release.cmd release.sh +*.pfx Samples/typescript/out/ help/markdown/RELEASE_NOTES.md paket.exe diff --git a/paket.dependencies b/paket.dependencies index b4d2baf8efa..db90085ffb3 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -version 5.100.2 +version 5.101.0 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket diff --git a/paket.lock b/paket.lock index a3bd58dc7b7..fcc7fc172b4 100644 --- a/paket.lock +++ b/paket.lock @@ -17,12 +17,12 @@ NUGET FluentMigrator (1.6.2) FluentMigrator.Runner (1.6.2) FluentMigrator (>= 1.6.2) - FsCheck (2.10.1) + FsCheck (2.10.3) FSharp.Core (>= 4.1) - restriction: < netstandard1.6 FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - FsCheck.Xunit (2.10.1) - FsCheck (>= 2.10.1) + FsCheck.Xunit (2.10.3) + FsCheck (>= 2.10.3) FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 xunit.abstractions (>= 2.0.1) - restriction: >= netstandard1.6 @@ -87,10 +87,10 @@ NUGET Microsoft.AspNet.Razor (>= 2.0.20710) Microsoft.Web.Infrastructure (>= 1.0) Microsoft.CompilerServices.AsyncTargetingPack (1.0.1) - restriction: < net45 - Microsoft.CSharp (4.4) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.CSharp (4.4) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.DotNet.PlatformAbstractions (2.0) System.AppContext (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) System.Collections (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.3) @@ -100,20 +100,20 @@ NUGET System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: && (< net45) (>= netstandard1.3) - Microsoft.NETCore.Platforms (2.0) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (>= dnxcore50) (&& (>= netstandard1.0) (>= monoandroid) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) + Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= monoandroid) (< netstandard1.0)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) Microsoft.Web.Administration (7.0) Microsoft.Web.Infrastructure (1.0) Microsoft.Web.Xdt (2.1.1) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.AccessControl (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) Mono.Cecil (0.10.0-beta6) System.Collections (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) @@ -143,51 +143,51 @@ NUGET Microsoft.AspNet.Razor - restriction: < net40 Microsoft.AspNet.Razor (>= 2.0.30506) - restriction: >= net40 Nancy (>= 1.4.3) - NETStandard.Library (2.0) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.1) (&& (< netstandard1.3) (>= monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (< portable-net45+win8+wpa81) (>= portable-net45+win8+wp8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.1) (&& (>= netstandard1.6) (< netstandard2.0) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) Newtonsoft.Json (10.0.3) - redirects: force Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) @@ -200,7 +200,7 @@ NUGET Nuget.Core (2.14) Microsoft.Web.Xdt (>= 2.1) NUnit (3.8.1) - NETStandard.Library (>= 1.6) - restriction: || (&& (< net20) (>= netstandard1.3) (< monoandroid)) (>= uap10.0) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard1.6) + NETStandard.Library (>= 1.6) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3)) (>= netstandard1.6) (>= uap10.0) System.Runtime.Loader (>= 4.3) - restriction: && (>= netstandard1.6) (< xamarinios) System.Threading.Thread (>= 4.3) - restriction: && (>= netstandard1.6) (< xamarinios) NUnit.Console (3.7) @@ -218,7 +218,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.6) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.100.2) + Paket.Core (5.101.0) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -236,21 +236,21 @@ NUGET RavenDB.Client (2.5.25023) Microsoft.CompilerServices.AsyncTargetingPack (>= 1.0) - restriction: < net45 RavenDB.Server (3.5.4) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + runtime.native.System.Net.Http (4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -261,699 +261,699 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) Serilog (1.5.14) serilog.sinks.nlog (1.5.4) NLog (>= 3.0) Serilog (>= 1.4.204 < 2.0) SSH.NET (2016.0) - Microsoft.CSharp (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) (>= wp71) (>= sl4) - System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Diagnostics.TraceSource (>= 4.0) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Globalization (>= 4.0.11) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.IO (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Linq (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Net.NameResolution (>= 4.0) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Net.Sockets (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Text.RegularExpressions (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Threading (>= 4.0.11) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Threading.Thread (>= 4.0) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Threading.Timer (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - System.Xml.XmlDocument (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + Microsoft.CSharp (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= sl4) (>= uap10.0) (>= wp71) + System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Diagnostics.TraceSource (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Globalization (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.IO (>= 4.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Linq (>= 4.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Net.NameResolution (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Net.Sockets (>= 4.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Text.RegularExpressions (>= 4.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Threading.Thread (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Threading.Timer (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Xml.XmlDocument (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) - SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) (>= wp71) (>= sl4) - System.IO (>= 4.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< wp71) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3)) (>= uap10.0) + SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= sl4) (>= uap10.0) (>= wp71) + System.IO (>= 4.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp71)) (&& (< net20) (>= netstandard1.3)) (>= uap10.0) System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= uap10.0) - System.AppContext (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Buffers (4.4) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.AppContext (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Immutable (1.4) - content: none, restriction: || (>= net45) (>= netstandard1.6) (&& (>= netstandard2.0) (< netcoreapp2.0)) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.Immutable (1.4) - content: none, restriction: || (>= net45) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Collections.NonGeneric (4.3) - redirects: force, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Specialized (4.3) - redirects: force, restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections.NonGeneric (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ComponentModel (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.ComponentModel.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) - System.ComponentModel (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Collections.NonGeneric (4.3) - redirects: force, restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Specialized (4.3) - redirects: force, restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Collections.NonGeneric (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ComponentModel.Primitives (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) + System.ComponentModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.ComponentModel.TypeConverter (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) - System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ComponentModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.5)) (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Console (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) + System.Collections.Specialized (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Console (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Process (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Thread (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tools (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.TraceSource (4.3) - restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Dynamic.Runtime (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Emit (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (>= uap10.0) (>= dnxcore50) (&& (>= netstandard1.0) (>= sl4)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Buffers (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.Compression.ZipFile (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ObjectModel (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tools (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.TraceSource (4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< uap10.0)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tracing (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Dynamic.Runtime (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netstandard1.0) (>= sl4)) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression.ZipFile (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq.Queryable (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Net.Http (4.3.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) - System.IO.FileSystem (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.WindowsRuntime (>= 4.3) - restriction: >= dnxcore50 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= net46) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding.Extensions (>= 4.3) - restriction: >= dnxcore50 - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.NameResolution (4.3) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Security.Principal.Windows (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Net.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.NameResolution (4.3) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Net.Requests (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.WebHeaderCollection (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ObjectModel (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Emit (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.Lightweight (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Http (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Sockets (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.WebHeaderCollection (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ObjectModel (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard1.6) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.Lightweight (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Extensions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net45)) (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Metadata (1.5) - content: none, restriction: || (>= net45) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (< monoandroid) (>= portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) - System.Reflection.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (4.4) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (4.3) - restriction: || (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (>= net463) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net45) (>= dnxcore50)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net45+win8+wpa81)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.0) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Reflection.Primitives (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (>= dnxcore50) (>= net45)) (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net45+win8+wpa81)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.0) (< portable-net451+win81+wpa81)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Loader (4.3) - restriction: >= netstandard1.6 - System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Serialization.Formatters (4.3) - redirects: force, restriction: && (< net20) (>= netstandard1.3) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Serialization.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Runtime.Serialization.Primitives (4.3) - redirects: force, restriction: || (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.WindowsRuntime (4.3) - restriction: >= dnxcore50 - System.Security.AccessControl (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= netstandard1.3) (>= monoandroid) - System.Security.Claims (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (>= dnxcore50) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= net46) (>= netstandard1.6)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) + System.Security.Claims (4.3) - restriction: || (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Cng (4.4) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Concurrent (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Concurrent (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.OpenSsl (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (>= uap10.0) (>= dnxcore50) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (&& (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (>= net46) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Principal (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Security.Principal.Windows (4.4) - restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal (4.3) - restriction: || (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Claims (>= 4.3) - restriction: || (&& (>= net46) (< net461)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Claims (>= 4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< net461)) + System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks.Parallel (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Thread (4.3) - restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= netstandard1.6) (< xamarinios)) (&& (>= netstandard1.6) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (4.3) - redirects: force, restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= netstandard1.6) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Timer (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) + System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Thread (4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= netstandard1.6) (< xamarinios)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.ThreadPool (4.3) - redirects: force, restriction: || (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Timer (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.ValueTuple (4.4) - content: none, restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: && (< net461) (>= netstandard1.0) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Web.Razor.Unofficial (2.0.2) - System.Xml.ReaderWriter (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (>= monoandroid) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XmlDocument (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XPath (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Xml.ReaderWriter (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.XmlDocument (4.3) - redirects: force, restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.XPath (4.3) - restriction: || (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XPath.XDocument (4.3) - restriction: >= netstandard1.6 - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.XDocument (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.XPath (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= netstandard1.6) (>= uap10.0) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Xml.XPath (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) toastr (2.1.1) jQuery (>= 1.6.3) Unquote (3.2) @@ -981,7 +981,7 @@ GROUP Build CONTENT: NONE NUGET remote: https://api.nuget.org/v3/index.json - FAKE (5.0.0-alpha018) + FAKE (5.0.0-beta003) FSharp.Compiler.Service (13.0) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 Microsoft.DiaSymReader (>= 1.1) - restriction: >= netstandard1.6 @@ -1067,80 +1067,80 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.1 System.Threading (>= 4.3) - restriction: >= netstandard1.1 - Microsoft.NETCore.Platforms (2.0) - content: none, restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= net462) (>= dnxcore50)) (&& (>= net463) (>= dnxcore50)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (>= monoandroid)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netcoreapp1.1)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net462) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netcoreapp1.1)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (2.0) - content: none, restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net462)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net462)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.AccessControl (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) - NETStandard.Library (2.0) - content: none, restriction: || (&& (< net45) (>= netstandard1.1)) (&& (>= netstandard1.0) (< netstandard2.0) (< xamarinmac)) (&& (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (< portable-net45+win8+wpa81) (>= portable-net45+win8+wp8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + NETStandard.Library (2.0) - content: none, restriction: || (&& (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1)) (&& (>= netstandard1.0) (< netstandard2.0) (< xamarinmac)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) Nuget.CommandLine (4.3) Octokit (0.26) - content: none NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.native.System (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (>= netstandard1.6) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System.Net.Http (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -1151,515 +1151,515 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) SourceLink.Fake (1.1) - System.AppContext (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Buffers (4.4) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.AppContext (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Concurrent (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.Concurrent (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections.Immutable (1.4) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Console (4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.4.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (4.4.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Process (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Thread (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tools (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.TraceSource (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Globalization (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Buffers (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.Compression.ZipFile (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ObjectModel (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression.ZipFile (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq.Queryable (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Http (4.3.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) - System.IO.FileSystem (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= net46) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Http (4.3.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Net.Requests (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Sockets (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ObjectModel (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Http (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Sockets (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ObjectModel (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Emit (4.3) - restriction: >= netstandard1.6 - System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Extensions (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Metadata (1.5) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (< monoandroid) (>= portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) - System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= uap10.0) (>= dnxcore50)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) - System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - content: none, restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (>= netstandard1.6) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.InteropServices.RuntimeInformation (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Loader (4.3) - restriction: >= netstandard1.6 - System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Security.AccessControl (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= netstandard1.3) (>= monoandroid) - System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.4) - content: none, restriction: || (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (4.3) - content: none, restriction: || (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Concurrent (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.4) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Principal.Windows (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) + System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Cng (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Concurrent (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.OpenSsl (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (4.3.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (4.4) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks.Parallel (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Thread (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.ValueTuple (4.4) - NETStandard.Library (>= 1.6.1) - restriction: && (< net461) (>= netstandard1.0) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XDocument (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.XDocument (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) remote: https://ci.appveyor.com/nuget/fsharp-formatting FSharp.Formatting (3.0.0-beta07) FSharp.Compiler.Service (>= 13.0 < 14.0) @@ -1670,178 +1670,178 @@ NUGET RoslynTools.ReferenceAssemblies (0.1.1) GITHUB remote: fsharp/FAKE - modules/Octokit/Octokit.fsx (620269f1c7fc0da138a6181fb8029f5600310f79) + modules/Octokit/Octokit.fsx (5e245616ca0cb4d1040c662f5fe0369e05b18831) Octokit (>= 0.20) GROUP netcore STORAGE: NONE -RESTRICTION: || (== net46) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) +RESTRICTION: || (== net46) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) NUGET remote: https://api.nuget.org/v3/index.json Argu (3.7) - FSharp.Core (>= 4.0.1.7-alpha) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XDocument (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + FSharp.Core (>= 4.0.1.7-alpha) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XDocument (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Chessie (0.6) - FSharp.Core - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) - FSharp.Core (>= 4.0.1.7-alpha) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + FSharp.Core - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) + FSharp.Core (>= 4.0.1.7-alpha) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) FSharp.Compiler.Service (14.0.2) - storage: packages, content: none - FSharp.Core (>= 4.1.18) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections.Immutable (>= 1.2) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== netstandard1.6) (== netstandard2.0) (>= net45)) (&& (== netstandard1.6) (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) (&& (== netcoreapp2.0) (>= net45)) - System.Collections.Immutable (>= 1.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Metadata (>= 1.4.2) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== netstandard1.6) (== netstandard2.0) (>= net45)) (&& (== netstandard1.6) (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) (&& (== netcoreapp2.0) (>= net45)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ValueTuple (>= 4.4) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - FSharp.Compiler.Tools (4.1.23) - restriction: || (== net46) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) + FSharp.Core (>= 4.1.18) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Immutable (>= 1.2) - restriction: || (== net46) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Collections.Immutable (>= 1.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.2) - restriction: || (== net46) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ValueTuple (>= 4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + FSharp.Compiler.Tools (4.1.23) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) FSharp.Core (4.1.18) - System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Console (>= 4.0) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tools (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq.Expressions (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Requests (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Numerics (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.RegularExpressions (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Thread (>= 4.0) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Timer (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.CSharp (4.4) - restriction: || (&& (== net46) (< net20)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= dnxcore50)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= dnxcore50)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= dnxcore50)) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) + System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Console (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tools (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Expressions (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Requests (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Thread (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Timer (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.CSharp (4.4) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) Microsoft.DotNet.PlatformAbstractions (2.0) - System.AppContext (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.App (2.0) - restriction: || (&& (== net46) (== netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) (&& (== netcoreapp1.1) (== netcoreapp2.0)) + System.AppContext (>= 4.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.App (2.0) - restriction: || (&& (== net46) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (== netcoreapp2.0)) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (2.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.Win32.Primitives (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.Win32.Registry (4.4) - restriction: || (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (== netstandard1.6) (>= netcoreapp2.0)) (&& (== net46) (== netstandard2.0) (>= netcoreapp2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netcoreapp2.0)) (&& (== netstandard1.6) (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.AccessControl (>= 4.4) - restriction: || (&& (== net46) (== netstandard1.6) (>= net461)) (&& (== net46) (== netstandard1.6) (< netstandard1.3) (>= monoandroid)) (&& (== net46) (== netstandard1.6) (>= netstandard2.0)) (&& (== net46) (== netstandard1.6) (>= monotouch)) (&& (== net46) (== netstandard1.6) (>= xamarintvos)) (&& (== net46) (== netstandard1.6) (>= xamarinwatchos)) (&& (== net46) (== netstandard1.6) (>= xamarinios)) (&& (== net46) (== netstandard1.6) (>= xamarinmac)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= net461)) (&& (== net46) (< netstandard1.3) (>= monoandroid)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (< netstandard1.3) (>= monoandroid)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (== net46) (== netstandard1.6) (>= net461)) (&& (== net46) (== netstandard1.6) (< netstandard1.3) (>= monoandroid)) (&& (== net46) (== netstandard1.6) (>= netstandard2.0)) (&& (== net46) (== netstandard1.6) (>= monotouch)) (&& (== net46) (== netstandard1.6) (>= xamarintvos)) (&& (== net46) (== netstandard1.6) (>= xamarinwatchos)) (&& (== net46) (== netstandard1.6) (>= xamarinios)) (&& (== net46) (== netstandard1.6) (>= xamarinmac)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= net461)) (&& (== net46) (< netstandard1.3) (>= monoandroid)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (< netstandard1.3) (>= monoandroid)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.Win32.Registry (4.4) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Mono.Cecil (0.10.0-beta6) - System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Csp (>= 4.0) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net35)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.1) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Csp (>= 4.0) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) NETStandard.Library (2.0) Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.AppContext (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Console (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Globalization.Calendars (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.IO.Compression (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.IO.FileSystem (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Net.Http (>= 4.3.2) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Net.Sockets (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.3)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.AppContext (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Console (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Globalization.Calendars (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO.Compression (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO.FileSystem (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Net.Http (>= 4.3.2) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Net.Sockets (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) Newtonsoft.Json (10.0.3) - Microsoft.CSharp (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net20)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net20)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net20)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net20)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net20)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net20)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.CSharp (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Octokit (0.26) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Paket.Core (5.100.2) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Paket.Core (5.101.0) Chessie (>= 0.6) - FSharp.Compiler.Tools - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) - FSharp.Core - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) + FSharp.Compiler.Tools - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) + FSharp.Core - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) Mono.Cecil (>= 0.10.0-beta6) - Newtonsoft.Json - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) - Newtonsoft.Json (>= 10.0.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Process (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.TraceSource (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.native.System (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) + Newtonsoft.Json - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) + Newtonsoft.Json (>= 10.0.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Process (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.TraceSource (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) + runtime.native.System.Net.Http (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -1852,636 +1852,636 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.AppContext (4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Buffers (4.4) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Threading (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Collections (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections.Concurrent (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Buffers (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Collections (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Concurrent (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections.Immutable (1.4) - storage: packages, content: none - NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Collections.NonGeneric (4.3) - restriction: || (&& (== net46) (< net20) (>= net462)) (&& (== net46) (< net20) (>= netstandard1.5)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections.Specialized (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.5)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ComponentModel (4.3) - restriction: || (&& (== net46) (< net20)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ComponentModel.Primitives (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< netstandard1.0) (>= win8)) (&& (== net46) (>= wp8)) (&& (== net46) (>= wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.ComponentModel (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (== net46) (< net20)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45) (>= netstandard1.5)) (&& (== net46) (>= net462)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections.Specialized (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45) (>= netstandard1.5)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ComponentModel (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Collections.NonGeneric (4.3) - restriction: || (&& (== net46) (< net20) (>= net462)) (&& (== net46) (< net20) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Specialized (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.NonGeneric (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ComponentModel (4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ComponentModel.Primitives (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< netstandard1.0) (>= win8)) (&& (== net46) (>= wp8)) (&& (== net46) (>= wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ComponentModel (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.5)) (&& (== net46) (>= net462)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Specialized (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ComponentModel (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.ComponentModel.Primitives (>= 4.3) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45) (>= netstandard1.5)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45) (>= netstandard1.5)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Console (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.FileVersionInfo (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Process (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Thread (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tools (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.TraceSource (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Dynamic.Runtime (4.3) - restriction: || (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net20)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Thread (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.ThreadPool (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tools (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.TraceSource (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Dynamic.Runtime (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization.Calendars (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization.Extensions (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization.Extensions (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.Compression (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Buffers (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Buffers (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.Compression.ZipFile (4.3) - System.Buffers (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.Compression (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Buffers (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.Compression (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.FileSystem (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.FileSystem.Primitives (>= 4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.FileSystem.Primitives (4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq.Expressions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Expressions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Linq.Parallel (4.3) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq.Queryable (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Queryable (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Net.Http (4.3.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.X509Certificates (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Primitives (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Requests (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Sockets (4.3) - restriction: || (== net46) (== netstandard1.6) (&& (== netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ObjectModel (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit (4.3) - storage: packages, content: none, restriction: || (&& (== net46) (< net20)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Extensions (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Primitives (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Requests (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Sockets (4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ObjectModel (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit (4.3) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Metadata (1.5) - storage: packages, content: none - NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Collections.Immutable (>= 1.4) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (< portable-net45+win8)) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= dnxcore50)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= dnxcore50)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (>= dnxcore50)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.5)) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Resources.ResourceManager (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netcoreapp1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netcoreapp1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netcoreapp1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netcoreapp1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= net462)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netcoreapp1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netcoreapp1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Collections.Immutable (>= 1.4) - restriction: || (== net46) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.TypeExtensions (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= net462)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.InteropServices.RuntimeInformation (4.3) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Loader (4.3) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.5)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.5)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.5)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Numerics (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (== net46) (< net20)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Serialization.Primitives (>= 4.3) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net46) (< net20)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.AccessControl (4.4) - restriction: || (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (< netstandard1.3) (>= monoandroid)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (== netstandard1.6) (>= netcoreapp2.0)) (&& (== net46) (== netstandard2.0) (>= netcoreapp2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netcoreapp2.0)) (&& (== netstandard1.6) (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) (== netcoreapp2.0) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Principal.Windows (>= 4.4) System.Security.Cryptography.Algorithms (4.3) - storage: packages, content: none - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= net463)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= net463)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= net463)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net46) (< net35)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net46) (< net35)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Encoding (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.Cryptography.Primitives (4.3) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.ProtectedData (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.Cryptography.X509Certificates (4.3.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Encoding (>= 4.3) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Principal.Windows (4.4) - restriction: || (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (< netstandard1.3) (>= monoandroid)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (== netstandard1.6) (>= netcoreapp2.0)) (&& (== net46) (== netstandard2.0) (>= netcoreapp2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= netcoreapp2.0)) (&& (== netstandard1.6) (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.RegularExpressions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= netcoreapp1.1)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) - System.Threading (4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Threading.Tasks (>= 4.3) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Threading.Tasks.Parallel (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Thread (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.ThreadPool (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Timer (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net451)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net451)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net451)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.ValueTuple (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Principal.Windows (4.4) - restriction: || (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Text.Encoding (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.RegularExpressions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Threading (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading.Tasks (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading.Tasks.Parallel (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Thread (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.ThreadPool (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Timer (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ValueTuple (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Xml.ReaderWriter (4.3) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XDocument (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= dnxcore50)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XmlDocument (4.3) - restriction: || (&& (== net46) (< net20)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XPath (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XPath.XDocument (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XDocument (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XmlDocument (4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XPath (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XPath.XDocument (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Xml.XPath (>= 4.3) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netstandard1.6) (== netstandard2.0) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net46) (== netstandard1.6)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (== netcoreapp2.0)) (== netstandard1.6) (&& (== netstandard1.6) (== netstandard2.0)) (&& (== netstandard1.6) (== netcoreapp2.0)) (== netstandard2.0) (&& (== netstandard2.0) (== netcoreapp2.0)) (== netcoreapp2.0) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath (>= 4.3) @@ -2507,28 +2507,32 @@ NUGET FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Globbing (5.0.0-alpha018) - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Process (5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - System.Diagnostics.Process (>= 4.3) - restriction: >= netstandard1.6 - Fake.Core.ReleaseNotes (5.0.0-alpha018) - Fake.Core.SemVer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.SemVer (5.0.0-alpha018) - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 + Fake.Core.Globbing (5.0.0-beta003) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.Core.Process (5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.ReleaseNotes (5.0.0-beta003) + Fake.Core.SemVer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.Core.SemVer (5.0.0-beta003) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.String (5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) @@ -2542,16 +2546,17 @@ NUGET FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Tasks (5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 + Fake.Core.Tasks (5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Tracing (5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) @@ -2559,175 +2564,189 @@ NUGET FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Xml (5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + Fake.Core.Xml (5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XmlDocument (>= 4.3) - restriction: >= netstandard1.6 - Fake.DotNet.AssemblyInfoFile (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.Cli (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.FSFormatting (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.MsBuild (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.NuGet (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.SemVer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tasks (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Xml (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Newtonsoft.Json (>= 10.0.3) - restriction: >= netstandard1.6 - System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 - Fake.DotNet.Paket (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.Testing.MSpec (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Testing.Common (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.Testing.NUnit (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Testing.Common (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - System.Linq.Parallel (>= 4.3) - restriction: >= netstandard1.6 + Fake.DotNet.AssemblyInfoFile (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.DotNet.Cli (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.DotNet.FSFormatting (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.DotNet.MsBuild (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.DotNet.NuGet (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tasks (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Newtonsoft.Json (>= 10.0.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Paket (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.DotNet.Testing.MSpec (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.DotNet.Testing.NUnit (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + System.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 - Fake.DotNet.Testing.XUnit2 (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Testing.Common (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (5.0.0-alpha018) - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: >= netstandard1.6 - Fake.IO.Zip (5.0.0-alpha018) - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 - System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 - System.Runtime.Loader (>= 4.3) - restriction: >= netstandard1.6 - Fake.Testing.Common (5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Tools.Git (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.SemVer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Windows.Chocolatey (5.0.0-alpha018) - Fake.Core.BuildServer (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.DotNet.NuGet (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha018) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 + Fake.DotNet.Testing.XUnit2 (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.IO.FileSystem (5.0.0-beta003) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.Zip (5.0.0-beta003) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + System.IO.Compression (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.Tools.Git (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 + Fake.Windows.Chocolatey (5.0.0-beta003) + Fake.Core.BuildServer (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.NuGet (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta003) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 2.0) - restriction: >= net46 FSharp.Compiler.Tools (4.1.23) - restriction: < netstandard1.6 FSharp.Core (4.1.18) System.Collections (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) @@ -2753,21 +2772,21 @@ NUGET System.Threading.Thread (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Threading.Timer (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Platforms (2.0) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (>= net461) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.1) (>= monoandroid)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (>= monoandroid)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< net20) (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (>= net461) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.AccessControl (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) Mono.Cecil (0.10.0-beta6) System.Collections (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) @@ -2777,51 +2796,51 @@ NUGET System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (>= netstandard1.3) System.Security.Cryptography.Csp (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) - NETStandard.Library (2.0) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (< portable-net45+win8+wpa81) (>= portable-net45+win8+wp8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) Newtonsoft.Json (10.0.3) Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) @@ -2831,7 +2850,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.100.2) + Paket.Core (5.101.0) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -2846,21 +2865,21 @@ NUGET System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XmlDocument (>= 4.3) - restriction: >= netstandard1.6 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -2871,628 +2890,624 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.AppContext (4.3) System.Collections (>= 4.3) - restriction: >= dnxcore50 System.Resources.ResourceManager (>= 4.3) - restriction: >= dnxcore50 - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: >= dnxcore50 - System.Buffers (4.4) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections.Concurrent (4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (< netstandard1.1) (>= netstandard1.6) (>= monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8)) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Collections.NonGeneric (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Specialized (4.3) - restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections.NonGeneric (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ComponentModel (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.ComponentModel.Primitives (4.3) - restriction: || (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) - System.ComponentModel (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) - System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ComponentModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.5)) (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Console (4.3) - restriction: || (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) - System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Process (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Thread (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tools (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Collections.NonGeneric (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Specialized (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Collections.NonGeneric (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ComponentModel.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) + System.ComponentModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) + System.Collections.Specialized (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) + System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net46) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Process (4.3) - restriction: || (>= net46) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.TraceSource (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard2.0) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Dynamic.Runtime (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Emit (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - restriction: || (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Buffers (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (>= netstandard1.6) - System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.ObjectModel (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Parallel (4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Dynamic.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Parallel (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq.Queryable (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Http (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= net46) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Http (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Net.Requests (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Sockets (4.3) - restriction: || (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ObjectModel (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Emit (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Extensions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (< monoandroid) (>= portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) - System.Reflection.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (4.4) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Runtime (4.3) - restriction: || (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= net462) (>= uap10.0)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Loader (4.3) - restriction: >= netstandard1.6 - System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Security.AccessControl (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Http (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Sockets (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= uap10.0)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= netstandard1.3) (>= monoandroid) - System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) + System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections.Concurrent (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Concurrent (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Principal.Windows (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net463) (>= dnxcore50)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - System.Threading.Tasks (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net463) (>= dnxcore50)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks.Parallel (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Thread (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.Xml.ReaderWriter (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.ReaderWriter (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XPath (4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XPath.XDocument (4.3) - restriction: >= netstandard1.6 - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.XDocument (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.XPath (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Xml.XPath.XmlDocument (4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Xml.XPath (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) diff --git a/src/app/FAKE/FAKE.fsproj b/src/app/FAKE/FAKE.fsproj index d7b191e97a1..d1d95e32b84 100644 --- a/src/app/FAKE/FAKE.fsproj +++ b/src/app/FAKE/FAKE.fsproj @@ -48,7 +48,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -110,7 +110,7 @@ - + ..\..\..\packages\Argu\lib\netstandard1.6\Argu.dll @@ -148,7 +148,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -157,7 +157,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -166,7 +166,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -175,7 +175,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -184,7 +184,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -213,7 +213,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -242,7 +242,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -251,7 +251,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -262,7 +262,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -271,7 +271,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -291,7 +291,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -311,7 +311,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -320,7 +320,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -340,7 +340,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -360,7 +360,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -371,7 +371,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -382,7 +382,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -420,7 +420,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -440,7 +440,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -460,7 +460,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -471,7 +471,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -509,7 +509,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -520,7 +520,7 @@ - + True @@ -545,7 +545,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -568,7 +568,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -577,7 +577,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -597,7 +597,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -617,7 +617,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -626,7 +626,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -646,7 +646,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -655,7 +655,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -684,7 +684,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -693,7 +693,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -704,7 +704,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -713,7 +713,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -731,7 +731,7 @@ - + True @@ -770,7 +770,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -820,7 +820,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -831,7 +831,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -851,7 +851,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -862,7 +862,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -871,7 +871,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -891,7 +891,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -900,7 +900,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -929,7 +929,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -940,7 +940,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -949,7 +949,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -960,7 +960,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -969,7 +969,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -980,7 +980,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -989,7 +989,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1000,7 +1000,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1011,7 +1011,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1031,7 +1031,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1049,7 +1049,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1058,7 +1058,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1087,7 +1087,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1137,7 +1137,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1166,7 +1166,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1177,7 +1177,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1224,7 +1224,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1244,7 +1244,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1253,7 +1253,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1273,7 +1273,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1282,7 +1282,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1338,7 +1338,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1358,7 +1358,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1367,7 +1367,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1376,7 +1376,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1396,7 +1396,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1416,7 +1416,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1436,7 +1436,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1445,7 +1445,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1454,7 +1454,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1483,7 +1483,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1492,7 +1492,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1530,7 +1530,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1550,7 +1550,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1570,7 +1570,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1608,7 +1608,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1617,7 +1617,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1637,7 +1637,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1646,7 +1646,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1666,7 +1666,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1677,7 +1677,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -1697,7 +1697,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1706,7 +1706,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1717,7 +1717,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1726,7 +1726,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1737,7 +1737,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1746,7 +1746,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1757,7 +1757,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1789,7 +1789,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1798,7 +1798,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1818,7 +1818,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -1827,7 +1827,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll diff --git a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj index 3bd3bf63a94..0c29cd7b74f 100644 --- a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj +++ b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj @@ -40,7 +40,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -106,7 +106,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -115,7 +115,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -124,7 +124,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -133,7 +133,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -142,7 +142,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -169,7 +169,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -178,7 +178,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -244,7 +244,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -300,7 +300,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -309,7 +309,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -318,7 +318,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -347,7 +347,7 @@ - + ..\..\..\packages\SSH.NET\lib\netstandard1.3\Renci.SshNet.dll @@ -403,7 +403,7 @@ - + ..\..\..\packages\SshNet.Security.Cryptography\lib\netstandard1.3\SshNet.Security.Cryptography.dll @@ -477,7 +477,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -486,7 +486,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -497,7 +497,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -506,7 +506,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -526,7 +526,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -546,7 +546,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -555,7 +555,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -566,7 +566,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -575,7 +575,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -586,7 +586,7 @@ - + ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll @@ -595,7 +595,7 @@ - + ..\..\..\packages\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll @@ -606,7 +606,7 @@ - + ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll @@ -615,7 +615,7 @@ - + ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll @@ -626,7 +626,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll @@ -635,7 +635,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll @@ -646,7 +646,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll @@ -664,7 +664,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -673,7 +673,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -693,7 +693,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -713,7 +713,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -724,7 +724,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -735,7 +735,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -746,7 +746,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -784,7 +784,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -804,7 +804,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -813,7 +813,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -833,7 +833,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -853,7 +853,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -864,7 +864,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -902,7 +902,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -913,7 +913,7 @@ - + True @@ -938,7 +938,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -961,7 +961,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -970,7 +970,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -990,7 +990,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1010,7 +1010,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1019,7 +1019,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1039,7 +1039,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1048,7 +1048,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -1086,7 +1086,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -1106,7 +1106,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -1124,7 +1124,7 @@ - + True @@ -1163,7 +1163,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1195,7 +1195,7 @@ - + ..\..\..\packages\System.Net.NameResolution\ref\netstandard1.3\System.Net.NameResolution.dll @@ -1224,7 +1224,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1235,7 +1235,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1255,7 +1255,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -1266,7 +1266,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1275,7 +1275,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1295,7 +1295,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1304,7 +1304,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1333,7 +1333,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1344,7 +1344,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1353,7 +1353,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1364,7 +1364,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1373,7 +1373,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1384,7 +1384,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1393,7 +1393,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1404,7 +1404,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1415,7 +1415,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1435,7 +1435,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1453,7 +1453,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1462,7 +1462,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1491,7 +1491,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1541,7 +1541,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1570,7 +1570,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1581,7 +1581,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1628,7 +1628,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1648,7 +1648,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1657,7 +1657,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1677,7 +1677,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1686,7 +1686,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1697,7 +1697,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll @@ -1706,7 +1706,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll @@ -1726,7 +1726,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1735,7 +1735,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1746,7 +1746,7 @@ - + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll @@ -1755,7 +1755,7 @@ - + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll @@ -1811,7 +1811,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1831,7 +1831,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1840,7 +1840,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1849,7 +1849,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1869,7 +1869,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1889,7 +1889,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1909,7 +1909,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1918,7 +1918,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1927,7 +1927,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1956,7 +1956,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1965,7 +1965,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2003,7 +2003,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -2014,7 +2014,7 @@ - + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll @@ -2023,7 +2023,7 @@ - + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll @@ -2034,7 +2034,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll @@ -2043,7 +2043,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll @@ -2052,7 +2052,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -2061,7 +2061,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll @@ -2081,7 +2081,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -2101,7 +2101,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -2139,7 +2139,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -2148,7 +2148,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2168,7 +2168,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -2177,7 +2177,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -2197,7 +2197,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -2208,7 +2208,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2228,7 +2228,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -2237,7 +2237,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2248,7 +2248,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2257,7 +2257,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2268,7 +2268,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2277,7 +2277,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2288,7 +2288,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2320,7 +2320,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2329,7 +2329,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2349,7 +2349,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -2358,7 +2358,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -2369,7 +2369,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2378,7 +2378,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll @@ -2389,7 +2389,7 @@ - + ..\..\..\packages\System.Xml.XPath\lib\netstandard1.3\System.Xml.XPath.dll @@ -2398,7 +2398,7 @@ - + ..\..\..\packages\System.Xml.XPath\ref\netstandard1.3\System.Xml.XPath.dll @@ -2409,7 +2409,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\netstandard1.3\System.Xml.XPath.XmlDocument.dll @@ -2418,7 +2418,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\ref\netstandard1.3\System.Xml.XPath.XmlDocument.dll diff --git a/src/app/Fake.Deploy/Fake.Deploy.fsproj b/src/app/Fake.Deploy/Fake.Deploy.fsproj index a15245ed151..0fd8d7cf97a 100644 --- a/src/app/Fake.Deploy/Fake.Deploy.fsproj +++ b/src/app/Fake.Deploy/Fake.Deploy.fsproj @@ -79,7 +79,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -113,7 +113,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -122,7 +122,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -131,7 +131,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -140,7 +140,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -149,7 +149,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -176,7 +176,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -185,7 +185,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -251,7 +251,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -351,7 +351,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -360,7 +360,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -369,7 +369,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -380,7 +380,7 @@ - + ..\..\..\packages\NLog\lib\MonoAndroid10\NLog.dll @@ -482,7 +482,7 @@ - + ..\..\..\packages\Serilog\lib\portable-net45+win+wpa81+wp80+MonoAndroid10+MonoTouch10\Serilog.dll @@ -522,7 +522,7 @@ - + ..\..\..\packages\SSH.NET\lib\netstandard1.3\Renci.SshNet.dll @@ -578,7 +578,7 @@ - + ..\..\..\packages\SshNet.Security.Cryptography\lib\netstandard1.3\SshNet.Security.Cryptography.dll @@ -652,7 +652,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -661,7 +661,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -672,7 +672,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -681,7 +681,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -701,7 +701,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -721,7 +721,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -730,7 +730,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -741,7 +741,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -750,7 +750,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -761,7 +761,7 @@ - + ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll @@ -770,7 +770,7 @@ - + ..\..\..\packages\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll @@ -781,7 +781,7 @@ - + ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll @@ -790,7 +790,7 @@ - + ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll @@ -801,7 +801,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll @@ -810,7 +810,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll @@ -821,7 +821,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll @@ -839,7 +839,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -848,7 +848,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -868,7 +868,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -888,7 +888,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -899,7 +899,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -910,7 +910,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -921,7 +921,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -959,7 +959,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -979,7 +979,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -988,7 +988,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -1008,7 +1008,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -1028,7 +1028,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -1039,7 +1039,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -1088,7 +1088,7 @@ - + True @@ -1113,7 +1113,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1136,7 +1136,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1145,7 +1145,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1165,7 +1165,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1185,7 +1185,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1194,7 +1194,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1214,7 +1214,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1223,7 +1223,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1252,7 +1252,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -1261,7 +1261,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -1272,7 +1272,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -1281,7 +1281,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -1299,7 +1299,7 @@ - + True @@ -1338,7 +1338,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1370,7 +1370,7 @@ - + ..\..\..\packages\System.Net.NameResolution\ref\netstandard1.3\System.Net.NameResolution.dll @@ -1399,7 +1399,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1410,7 +1410,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1430,7 +1430,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -1441,7 +1441,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1450,7 +1450,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1470,7 +1470,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1479,7 +1479,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1508,7 +1508,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1519,7 +1519,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1528,7 +1528,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1539,7 +1539,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1548,7 +1548,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1559,7 +1559,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1568,7 +1568,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1579,7 +1579,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1590,7 +1590,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1610,7 +1610,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1628,7 +1628,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1637,7 +1637,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1666,7 +1666,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1716,7 +1716,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1745,7 +1745,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1803,7 +1803,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1823,7 +1823,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1832,7 +1832,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1852,7 +1852,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1861,7 +1861,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1872,7 +1872,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll @@ -1881,7 +1881,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll @@ -1901,7 +1901,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1910,7 +1910,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1921,7 +1921,7 @@ - + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll @@ -1930,7 +1930,7 @@ - + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll @@ -1986,7 +1986,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -2006,7 +2006,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -2015,7 +2015,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -2024,7 +2024,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -2044,7 +2044,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -2064,7 +2064,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -2084,7 +2084,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2093,7 +2093,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2102,7 +2102,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2131,7 +2131,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2140,7 +2140,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2178,7 +2178,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -2189,7 +2189,7 @@ - + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll @@ -2198,7 +2198,7 @@ - + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll @@ -2209,7 +2209,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll @@ -2218,7 +2218,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll @@ -2227,7 +2227,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -2236,7 +2236,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll @@ -2256,7 +2256,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -2276,7 +2276,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -2314,7 +2314,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -2323,7 +2323,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2343,7 +2343,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -2352,7 +2352,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -2372,7 +2372,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -2383,7 +2383,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2403,7 +2403,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -2412,7 +2412,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2423,7 +2423,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2432,7 +2432,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2443,7 +2443,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2452,7 +2452,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2463,7 +2463,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2495,7 +2495,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2504,7 +2504,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2524,7 +2524,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -2533,7 +2533,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -2544,7 +2544,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2553,7 +2553,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll @@ -2564,7 +2564,7 @@ - + ..\..\..\packages\System.Xml.XPath\lib\netstandard1.3\System.Xml.XPath.dll @@ -2573,7 +2573,7 @@ - + ..\..\..\packages\System.Xml.XPath\ref\netstandard1.3\System.Xml.XPath.dll @@ -2584,7 +2584,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\netstandard1.3\System.Xml.XPath.XmlDocument.dll @@ -2593,7 +2593,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\ref\netstandard1.3\System.Xml.XPath.XmlDocument.dll diff --git a/src/app/Fake.Experimental/Fake.Experimental.fsproj b/src/app/Fake.Experimental/Fake.Experimental.fsproj index 50b69e026d7..ac3c68578eb 100644 --- a/src/app/Fake.Experimental/Fake.Experimental.fsproj +++ b/src/app/Fake.Experimental/Fake.Experimental.fsproj @@ -91,7 +91,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -100,7 +100,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -109,7 +109,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -118,7 +118,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -127,7 +127,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -156,7 +156,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -167,7 +167,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -176,7 +176,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -196,7 +196,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -216,7 +216,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -225,7 +225,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -245,7 +245,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -265,7 +265,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -276,7 +276,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -287,7 +287,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -325,7 +325,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -345,7 +345,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -365,7 +365,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -376,7 +376,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -414,7 +414,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -425,7 +425,7 @@ - + True @@ -450,7 +450,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -470,7 +470,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -490,7 +490,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -499,7 +499,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -519,7 +519,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -528,7 +528,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -557,7 +557,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -566,7 +566,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -577,7 +577,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -586,7 +586,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -604,7 +604,7 @@ - + True @@ -643,7 +643,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -693,7 +693,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -704,7 +704,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -715,7 +715,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -724,7 +724,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -744,7 +744,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -753,7 +753,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -782,7 +782,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -793,7 +793,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -802,7 +802,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -813,7 +813,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -822,7 +822,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -833,7 +833,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -842,7 +842,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -853,7 +853,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -864,7 +864,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -884,7 +884,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -902,7 +902,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -911,7 +911,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -940,7 +940,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -990,7 +990,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1019,7 +1019,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1030,7 +1030,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1153,7 +1153,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1173,7 +1173,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1182,7 +1182,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1191,7 +1191,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1211,7 +1211,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1231,7 +1231,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1251,7 +1251,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1260,7 +1260,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1269,7 +1269,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1298,7 +1298,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1307,7 +1307,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1345,7 +1345,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1365,7 +1365,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1385,7 +1385,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1423,7 +1423,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1432,7 +1432,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1452,7 +1452,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1461,7 +1461,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1481,7 +1481,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1492,7 +1492,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1501,7 +1501,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1512,7 +1512,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1521,7 +1521,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1532,7 +1532,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1541,7 +1541,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1552,7 +1552,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj index 6749d67057e..af874de977c 100644 --- a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj +++ b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj @@ -132,7 +132,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -141,7 +141,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -150,7 +150,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -159,7 +159,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -168,7 +168,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -197,7 +197,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -208,7 +208,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -217,7 +217,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -237,7 +237,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -257,7 +257,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -266,7 +266,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -286,7 +286,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -306,7 +306,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -317,7 +317,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -328,7 +328,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -366,7 +366,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -386,7 +386,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -406,7 +406,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -417,7 +417,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -455,7 +455,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -466,7 +466,7 @@ - + True @@ -491,7 +491,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -511,7 +511,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -531,7 +531,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -540,7 +540,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -560,7 +560,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -569,7 +569,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -598,7 +598,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -607,7 +607,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -618,7 +618,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -627,7 +627,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -645,7 +645,7 @@ - + True @@ -684,7 +684,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -734,7 +734,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -745,7 +745,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -756,7 +756,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -765,7 +765,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -785,7 +785,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -794,7 +794,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -823,7 +823,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -834,7 +834,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -843,7 +843,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -854,7 +854,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -863,7 +863,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -874,7 +874,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -883,7 +883,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -894,7 +894,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -905,7 +905,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -925,7 +925,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -943,7 +943,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -952,7 +952,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -981,7 +981,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1031,7 +1031,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1060,7 +1060,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1071,7 +1071,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1118,7 +1118,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1129,7 +1129,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1138,7 +1138,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1194,7 +1194,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1214,7 +1214,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1223,7 +1223,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1232,7 +1232,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1252,7 +1252,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1272,7 +1272,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1292,7 +1292,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1301,7 +1301,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1310,7 +1310,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1339,7 +1339,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1348,7 +1348,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1386,7 +1386,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1406,7 +1406,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1426,7 +1426,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1464,7 +1464,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1473,7 +1473,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1493,7 +1493,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1502,7 +1502,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1522,7 +1522,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1533,7 +1533,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1542,7 +1542,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1553,7 +1553,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1573,7 +1573,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1582,7 +1582,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1593,7 +1593,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/app/Fake.Gallio/Fake.Gallio.fsproj b/src/app/Fake.Gallio/Fake.Gallio.fsproj index e84db6ba31d..3b836e2222c 100644 --- a/src/app/Fake.Gallio/Fake.Gallio.fsproj +++ b/src/app/Fake.Gallio/Fake.Gallio.fsproj @@ -102,7 +102,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -111,7 +111,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -120,7 +120,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -129,7 +129,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -138,7 +138,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -167,7 +167,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -178,7 +178,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -187,7 +187,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -207,7 +207,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -227,7 +227,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -236,7 +236,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -256,7 +256,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -276,7 +276,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -287,7 +287,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -298,7 +298,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -336,7 +336,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -356,7 +356,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -376,7 +376,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -387,7 +387,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -425,7 +425,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -436,7 +436,7 @@ - + True @@ -461,7 +461,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -481,7 +481,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -501,7 +501,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -510,7 +510,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -530,7 +530,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -539,7 +539,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -568,7 +568,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -577,7 +577,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -588,7 +588,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -597,7 +597,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -615,7 +615,7 @@ - + True @@ -654,7 +654,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -704,7 +704,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -715,7 +715,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -726,7 +726,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -735,7 +735,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -755,7 +755,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -764,7 +764,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -793,7 +793,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -804,7 +804,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -813,7 +813,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -824,7 +824,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -833,7 +833,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -844,7 +844,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -853,7 +853,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -864,7 +864,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -875,7 +875,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -895,7 +895,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -913,7 +913,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -922,7 +922,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -951,7 +951,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1001,7 +1001,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1030,7 +1030,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1041,7 +1041,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1099,7 +1099,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1108,7 +1108,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1164,7 +1164,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1184,7 +1184,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1193,7 +1193,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1202,7 +1202,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1222,7 +1222,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1242,7 +1242,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1262,7 +1262,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1271,7 +1271,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1280,7 +1280,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1309,7 +1309,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1318,7 +1318,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1356,7 +1356,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1376,7 +1376,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1396,7 +1396,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1434,7 +1434,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1443,7 +1443,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1463,7 +1463,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1472,7 +1472,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1492,7 +1492,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1503,7 +1503,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1512,7 +1512,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1523,7 +1523,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1532,7 +1532,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1543,7 +1543,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1552,7 +1552,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1563,7 +1563,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/app/Fake.IIS/Fake.IIS.fsproj b/src/app/Fake.IIS/Fake.IIS.fsproj index 0385df8f375..59d174678ed 100644 --- a/src/app/Fake.IIS/Fake.IIS.fsproj +++ b/src/app/Fake.IIS/Fake.IIS.fsproj @@ -97,7 +97,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -106,7 +106,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -115,7 +115,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -124,7 +124,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -133,7 +133,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -173,7 +173,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -184,7 +184,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -193,7 +193,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -213,7 +213,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -233,7 +233,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -242,7 +242,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -262,7 +262,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -282,7 +282,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -293,7 +293,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -304,7 +304,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -342,7 +342,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -362,7 +362,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -382,7 +382,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -393,7 +393,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -431,7 +431,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -442,7 +442,7 @@ - + True @@ -467,7 +467,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -487,7 +487,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -507,7 +507,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -516,7 +516,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -536,7 +536,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -545,7 +545,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -574,7 +574,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -583,7 +583,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -594,7 +594,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -603,7 +603,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -621,7 +621,7 @@ - + True @@ -660,7 +660,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -710,7 +710,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -721,7 +721,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -732,7 +732,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -741,7 +741,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -761,7 +761,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -770,7 +770,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -799,7 +799,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -810,7 +810,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -819,7 +819,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -830,7 +830,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -839,7 +839,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -850,7 +850,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -859,7 +859,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -870,7 +870,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -881,7 +881,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -901,7 +901,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -919,7 +919,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -928,7 +928,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -957,7 +957,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1007,7 +1007,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1036,7 +1036,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1047,7 +1047,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1094,7 +1094,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1105,7 +1105,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1114,7 +1114,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1170,7 +1170,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1190,7 +1190,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1199,7 +1199,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1208,7 +1208,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1228,7 +1228,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1248,7 +1248,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1268,7 +1268,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1277,7 +1277,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1286,7 +1286,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1315,7 +1315,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1324,7 +1324,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1362,7 +1362,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1382,7 +1382,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1402,7 +1402,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1440,7 +1440,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1449,7 +1449,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1469,7 +1469,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1478,7 +1478,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1498,7 +1498,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1509,7 +1509,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1518,7 +1518,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1529,7 +1529,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1538,7 +1538,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1549,7 +1549,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1558,7 +1558,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1569,7 +1569,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/app/Fake.SQL/Fake.SQL.fsproj b/src/app/Fake.SQL/Fake.SQL.fsproj index 8aadaf06b52..fcca3a7a2da 100644 --- a/src/app/Fake.SQL/Fake.SQL.fsproj +++ b/src/app/Fake.SQL/Fake.SQL.fsproj @@ -115,7 +115,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -124,7 +124,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -133,7 +133,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -142,7 +142,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -151,7 +151,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -180,7 +180,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -191,7 +191,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -200,7 +200,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -220,7 +220,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -240,7 +240,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -249,7 +249,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -269,7 +269,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -289,7 +289,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -300,7 +300,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -311,7 +311,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -349,7 +349,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -369,7 +369,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -389,7 +389,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -400,7 +400,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -438,7 +438,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -449,7 +449,7 @@ - + True @@ -474,7 +474,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -494,7 +494,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -514,7 +514,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -523,7 +523,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -543,7 +543,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -552,7 +552,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -581,7 +581,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -590,7 +590,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -601,7 +601,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -610,7 +610,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -628,7 +628,7 @@ - + True @@ -667,7 +667,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -717,7 +717,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -728,7 +728,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -739,7 +739,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -748,7 +748,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -768,7 +768,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -777,7 +777,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -806,7 +806,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -817,7 +817,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -826,7 +826,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -837,7 +837,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -846,7 +846,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -857,7 +857,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -866,7 +866,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -877,7 +877,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -888,7 +888,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -908,7 +908,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -926,7 +926,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -935,7 +935,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -964,7 +964,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1014,7 +1014,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1043,7 +1043,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1054,7 +1054,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1101,7 +1101,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1112,7 +1112,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1121,7 +1121,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1177,7 +1177,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1197,7 +1197,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1206,7 +1206,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1215,7 +1215,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1235,7 +1235,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1255,7 +1255,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1275,7 +1275,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1284,7 +1284,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1293,7 +1293,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1322,7 +1322,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1331,7 +1331,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1369,7 +1369,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1389,7 +1389,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1409,7 +1409,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1447,7 +1447,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1456,7 +1456,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1476,7 +1476,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1485,7 +1485,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1505,7 +1505,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1516,7 +1516,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1525,7 +1525,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1536,7 +1536,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1545,7 +1545,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1556,7 +1556,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1565,7 +1565,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1576,7 +1576,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 70ebcecd55b..0533c1e4a13 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -451,7 +451,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -489,7 +489,7 @@ - + ..\..\..\packages\Chessie\lib\netstandard1.6\Chessie.dll @@ -509,7 +509,7 @@ - + ..\..\..\packages\FSharp.Compiler.Service\lib\netstandard1.6\FSharp.Compiler.Service.dll @@ -547,7 +547,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -556,7 +556,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -565,7 +565,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -574,7 +574,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -583,7 +583,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -621,7 +621,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -630,7 +630,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -707,7 +707,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -718,7 +718,7 @@ - + ..\..\..\packages\Microsoft.Win32.Registry\lib\netstandard1.3\Microsoft.Win32.Registry.dll @@ -727,7 +727,7 @@ - + ..\..\..\packages\Microsoft.Win32.Registry\ref\netstandard1.3\Microsoft.Win32.Registry.dll @@ -736,7 +736,7 @@ - + ..\..\..\packages\Microsoft.Win32.Registry\lib\netstandard2.0\Microsoft.Win32.Registry.dll @@ -745,7 +745,7 @@ - + ..\..\..\packages\Microsoft.Win32.Registry\ref\netstandard2.0\Microsoft.Win32.Registry.dll @@ -804,7 +804,7 @@ - + ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -886,7 +886,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -895,7 +895,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -904,7 +904,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -935,7 +935,7 @@ - + ..\..\..\packages\Paket.Core\lib\netstandard1.6\Paket.Core.dll @@ -964,7 +964,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -973,7 +973,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -984,7 +984,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -993,7 +993,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -1013,7 +1013,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -1033,7 +1033,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -1042,7 +1042,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -1053,7 +1053,7 @@ - + ..\..\..\packages\System.Collections.Immutable\lib\netstandard1.0\System.Collections.Immutable.dll @@ -1073,7 +1073,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -1082,7 +1082,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -1093,7 +1093,7 @@ - + ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll @@ -1102,7 +1102,7 @@ - + ..\..\..\packages\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll @@ -1113,7 +1113,7 @@ - + ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll @@ -1122,7 +1122,7 @@ - + ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll @@ -1133,7 +1133,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll @@ -1142,7 +1142,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll @@ -1153,7 +1153,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll @@ -1171,7 +1171,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -1180,7 +1180,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -1200,7 +1200,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -1220,7 +1220,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -1231,7 +1231,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -1242,7 +1242,7 @@ - + ..\..\..\packages\System.Diagnostics.FileVersionInfo\ref\netstandard1.3\System.Diagnostics.FileVersionInfo.dll @@ -1253,7 +1253,7 @@ - + ..\..\..\packages\System.Diagnostics.Process\ref\netstandard1.4\System.Diagnostics.Process.dll @@ -1264,7 +1264,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -1275,7 +1275,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -1313,7 +1313,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -1333,7 +1333,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -1342,7 +1342,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -1362,7 +1362,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -1382,7 +1382,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -1393,7 +1393,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -1431,7 +1431,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -1442,7 +1442,7 @@ - + True @@ -1467,7 +1467,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1490,7 +1490,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1499,7 +1499,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1519,7 +1519,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1539,7 +1539,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1548,7 +1548,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1568,7 +1568,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1577,7 +1577,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1606,7 +1606,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -1615,7 +1615,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -1626,7 +1626,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -1635,7 +1635,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -1653,7 +1653,7 @@ - + True @@ -1692,7 +1692,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1742,7 +1742,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1753,7 +1753,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1773,7 +1773,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -1784,7 +1784,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1793,7 +1793,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1813,7 +1813,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1822,7 +1822,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1851,7 +1851,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1862,7 +1862,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1871,7 +1871,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1882,7 +1882,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1891,7 +1891,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1902,7 +1902,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1911,7 +1911,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1922,7 +1922,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1933,7 +1933,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard1.1\System.Reflection.Metadata.dll @@ -1953,7 +1953,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1973,7 +1973,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1991,7 +1991,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -2000,7 +2000,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -2029,7 +2029,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -2079,7 +2079,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -2108,7 +2108,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -2119,7 +2119,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -2166,7 +2166,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -2186,7 +2186,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -2195,7 +2195,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -2215,7 +2215,7 @@ - + ..\..\..\packages\System.Runtime.Loader\lib\netstandard1.5\System.Runtime.Loader.dll @@ -2224,7 +2224,7 @@ - + ..\..\..\packages\System.Runtime.Loader\ref\netstandard1.5\System.Runtime.Loader.dll @@ -2235,7 +2235,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -2244,7 +2244,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -2255,7 +2255,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll @@ -2264,7 +2264,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll @@ -2284,7 +2284,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -2293,7 +2293,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -2304,7 +2304,7 @@ - + ..\..\..\packages\System.Security.AccessControl\lib\netstandard2.0\System.Security.AccessControl.dll @@ -2313,7 +2313,7 @@ - + ..\..\..\packages\System.Security.AccessControl\ref\netstandard2.0\System.Security.AccessControl.dll @@ -2324,7 +2324,7 @@ - + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll @@ -2333,7 +2333,7 @@ - + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll @@ -2389,7 +2389,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -2409,7 +2409,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -2418,7 +2418,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -2427,7 +2427,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -2447,7 +2447,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -2467,7 +2467,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -2487,7 +2487,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2496,7 +2496,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2505,7 +2505,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2534,7 +2534,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2543,7 +2543,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2554,7 +2554,7 @@ - + ..\..\..\packages\System.Security.Cryptography.ProtectedData\lib\netstandard1.3\System.Security.Cryptography.ProtectedData.dll @@ -2563,7 +2563,7 @@ - + ..\..\..\packages\System.Security.Cryptography.ProtectedData\ref\netstandard1.3\System.Security.Cryptography.ProtectedData.dll @@ -2572,7 +2572,7 @@ - + ..\..\..\packages\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll @@ -2581,7 +2581,7 @@ - + ..\..\..\packages\System.Security.Cryptography.ProtectedData\ref\netstandard2.0\System.Security.Cryptography.ProtectedData.dll @@ -2619,7 +2619,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -2630,7 +2630,7 @@ - + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll @@ -2639,7 +2639,7 @@ - + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll @@ -2650,7 +2650,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll @@ -2659,7 +2659,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll @@ -2668,7 +2668,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -2677,7 +2677,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll @@ -2697,7 +2697,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -2717,7 +2717,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -2755,7 +2755,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -2764,7 +2764,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2784,7 +2784,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -2793,7 +2793,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -2813,7 +2813,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -2824,7 +2824,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2844,7 +2844,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -2853,7 +2853,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2864,7 +2864,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2873,7 +2873,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2884,7 +2884,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2893,7 +2893,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2904,7 +2904,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2915,7 +2915,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll @@ -2924,7 +2924,7 @@ - + ..\..\..\packages\System.ValueTuple\ref\portable-net40+sl4+win8+wp8\System.ValueTuple.dll @@ -2953,7 +2953,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2962,7 +2962,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2982,7 +2982,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -2991,7 +2991,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -3002,7 +3002,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -3011,7 +3011,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll @@ -3022,7 +3022,7 @@ - + ..\..\..\packages\System.Xml.XPath\lib\netstandard1.3\System.Xml.XPath.dll @@ -3031,7 +3031,7 @@ - + ..\..\..\packages\System.Xml.XPath\ref\netstandard1.3\System.Xml.XPath.dll @@ -3042,7 +3042,7 @@ - + ..\..\..\packages\System.Xml.XPath.XDocument\lib\netstandard1.3\System.Xml.XPath.XDocument.dll @@ -3051,7 +3051,7 @@ - + ..\..\..\packages\System.Xml.XPath.XDocument\ref\netstandard1.3\System.Xml.XPath.XDocument.dll @@ -3062,7 +3062,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\netstandard1.3\System.Xml.XPath.XmlDocument.dll @@ -3071,7 +3071,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\ref\netstandard1.3\System.Xml.XPath.XmlDocument.dll @@ -3083,4 +3083,4 @@ - + \ No newline at end of file diff --git a/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj b/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj index 71a49f54f49..9b24cdc3d95 100644 --- a/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj @@ -85,7 +85,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -94,7 +94,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -103,7 +103,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -112,7 +112,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -121,7 +121,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -150,7 +150,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -161,7 +161,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -170,7 +170,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -190,7 +190,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -210,7 +210,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -219,7 +219,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -239,7 +239,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -259,7 +259,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -270,7 +270,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -281,7 +281,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -319,7 +319,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -339,7 +339,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -359,7 +359,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -370,7 +370,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -408,7 +408,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -419,7 +419,7 @@ - + True @@ -444,7 +444,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -464,7 +464,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -484,7 +484,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -493,7 +493,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -513,7 +513,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -522,7 +522,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -551,7 +551,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -560,7 +560,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -571,7 +571,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -580,7 +580,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -598,7 +598,7 @@ - + True @@ -637,7 +637,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -687,7 +687,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -698,7 +698,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -709,7 +709,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -718,7 +718,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -738,7 +738,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -747,7 +747,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -776,7 +776,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -787,7 +787,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -796,7 +796,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -807,7 +807,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -816,7 +816,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -827,7 +827,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -836,7 +836,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -847,7 +847,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -858,7 +858,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -878,7 +878,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -896,7 +896,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -905,7 +905,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -934,7 +934,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -981,7 +981,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1010,7 +1010,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1021,7 +1021,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1068,7 +1068,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1079,7 +1079,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1144,7 +1144,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1164,7 +1164,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1173,7 +1173,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1182,7 +1182,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1202,7 +1202,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1222,7 +1222,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1242,7 +1242,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1251,7 +1251,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1260,7 +1260,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1289,7 +1289,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1298,7 +1298,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1336,7 +1336,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1356,7 +1356,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1376,7 +1376,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1414,7 +1414,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1423,7 +1423,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1443,7 +1443,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1452,7 +1452,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1472,7 +1472,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1483,7 +1483,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1492,7 +1492,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1503,7 +1503,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1512,7 +1512,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1523,7 +1523,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1532,7 +1532,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1543,7 +1543,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj index 0c23d3b7fa1..70161c01954 100644 --- a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj @@ -36,7 +36,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -98,7 +98,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -107,7 +107,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -116,7 +116,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -125,7 +125,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -134,7 +134,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -161,7 +161,7 @@ - + ..\..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -170,7 +170,7 @@ - + ..\..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -236,7 +236,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -292,7 +292,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -301,7 +301,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -310,7 +310,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -339,7 +339,7 @@ - + ..\..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -348,7 +348,7 @@ - + ..\..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -359,7 +359,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -368,7 +368,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -388,7 +388,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -408,7 +408,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -417,7 +417,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -428,7 +428,7 @@ - + ..\..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -437,7 +437,7 @@ - + ..\..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -448,7 +448,7 @@ - + ..\..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll @@ -457,7 +457,7 @@ - + ..\..\..\..\packages\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll @@ -468,7 +468,7 @@ - + ..\..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll @@ -477,7 +477,7 @@ - + ..\..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll @@ -488,7 +488,7 @@ - + ..\..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll @@ -497,7 +497,7 @@ - + ..\..\..\..\packages\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll @@ -508,7 +508,7 @@ - + ..\..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll @@ -526,7 +526,7 @@ - + ..\..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -535,7 +535,7 @@ - + ..\..\..\..\packages\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -555,7 +555,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -575,7 +575,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -586,7 +586,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -597,7 +597,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -635,7 +635,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -655,7 +655,7 @@ - + ..\..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -664,7 +664,7 @@ - + ..\..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -684,7 +684,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -704,7 +704,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -715,7 +715,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -753,7 +753,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -764,7 +764,7 @@ - + True @@ -789,7 +789,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -812,7 +812,7 @@ - + ..\..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -821,7 +821,7 @@ - + ..\..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -841,7 +841,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -861,7 +861,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -870,7 +870,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -890,7 +890,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -899,7 +899,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -928,7 +928,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -937,7 +937,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -948,7 +948,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -957,7 +957,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -975,7 +975,7 @@ - + True @@ -1014,7 +1014,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1064,7 +1064,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1075,7 +1075,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1095,7 +1095,7 @@ - + ..\..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -1106,7 +1106,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1115,7 +1115,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1135,7 +1135,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1144,7 +1144,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1173,7 +1173,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1184,7 +1184,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1193,7 +1193,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1204,7 +1204,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1213,7 +1213,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1224,7 +1224,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1233,7 +1233,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1244,7 +1244,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1255,7 +1255,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1275,7 +1275,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1293,7 +1293,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1302,7 +1302,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1331,7 +1331,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1381,7 +1381,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1410,7 +1410,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1421,7 +1421,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1468,7 +1468,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1488,7 +1488,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1497,7 +1497,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1517,7 +1517,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1526,7 +1526,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1537,7 +1537,7 @@ - + ..\..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll @@ -1546,7 +1546,7 @@ - + ..\..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll @@ -1566,7 +1566,7 @@ - + ..\..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1575,7 +1575,7 @@ - + ..\..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1631,7 +1631,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1651,7 +1651,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1660,7 +1660,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1669,7 +1669,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1689,7 +1689,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1709,7 +1709,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1729,7 +1729,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1738,7 +1738,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1747,7 +1747,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1785,7 +1785,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1823,7 +1823,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1843,7 +1843,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1863,7 +1863,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1901,7 +1901,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1910,7 +1910,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1930,7 +1930,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1939,7 +1939,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1959,7 +1959,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1970,7 +1970,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -1990,7 +1990,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1999,7 +1999,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2010,7 +2010,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2019,7 +2019,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2030,7 +2030,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2039,7 +2039,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2050,7 +2050,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2079,7 +2079,7 @@ - + ..\..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2088,7 +2088,7 @@ - + ..\..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2108,7 +2108,7 @@ - + ..\..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -2117,7 +2117,7 @@ - + ..\..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -2128,7 +2128,7 @@ - + ..\..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2137,7 +2137,7 @@ - + ..\..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll diff --git a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj index 4c8a26e12ae..23ba7c42d5d 100644 --- a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj @@ -96,7 +96,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -105,7 +105,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -114,7 +114,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -123,7 +123,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -132,7 +132,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -181,7 +181,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -234,7 +234,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -243,7 +243,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -263,7 +263,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -283,7 +283,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -292,7 +292,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -312,7 +312,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -332,7 +332,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -343,7 +343,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -354,7 +354,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -392,7 +392,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -412,7 +412,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -432,7 +432,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -443,7 +443,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -481,7 +481,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -492,7 +492,7 @@ - + True @@ -517,7 +517,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -537,7 +537,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -557,7 +557,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -566,7 +566,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -586,7 +586,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -595,7 +595,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -624,7 +624,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -633,7 +633,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -644,7 +644,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -653,7 +653,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -671,7 +671,7 @@ - + True @@ -710,7 +710,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -760,7 +760,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -771,7 +771,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -782,7 +782,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -791,7 +791,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -811,7 +811,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -820,7 +820,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -849,7 +849,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -860,7 +860,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -869,7 +869,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -880,7 +880,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -889,7 +889,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -900,7 +900,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -909,7 +909,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -920,7 +920,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -931,7 +931,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -951,7 +951,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -969,7 +969,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -978,7 +978,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1007,7 +1007,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1057,7 +1057,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1086,7 +1086,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1144,7 +1144,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1155,7 +1155,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1164,7 +1164,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1220,7 +1220,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1240,7 +1240,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1249,7 +1249,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1258,7 +1258,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1278,7 +1278,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1298,7 +1298,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1318,7 +1318,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1327,7 +1327,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1336,7 +1336,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1365,7 +1365,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1374,7 +1374,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1412,7 +1412,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1432,7 +1432,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1452,7 +1452,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1490,7 +1490,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1499,7 +1499,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1519,7 +1519,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1528,7 +1528,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1548,7 +1548,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1559,7 +1559,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1568,7 +1568,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1579,7 +1579,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1588,7 +1588,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1599,7 +1599,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1608,7 +1608,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1619,7 +1619,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj index 5b51ccc4363..95c8f543712 100644 --- a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj +++ b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj @@ -201,7 +201,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -235,7 +235,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -244,7 +244,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -253,7 +253,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -262,7 +262,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -271,7 +271,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -402,7 +402,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -411,7 +411,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -488,7 +488,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -588,7 +588,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -597,7 +597,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -606,7 +606,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -635,7 +635,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -644,7 +644,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -655,7 +655,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -664,7 +664,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -684,7 +684,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -704,7 +704,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -713,7 +713,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -724,7 +724,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -733,7 +733,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -744,7 +744,7 @@ - + ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll @@ -753,7 +753,7 @@ - + ..\..\..\packages\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll @@ -764,7 +764,7 @@ - + ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll @@ -773,7 +773,7 @@ - + ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll @@ -784,7 +784,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll @@ -793,7 +793,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll @@ -804,7 +804,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll @@ -822,7 +822,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -831,7 +831,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -851,7 +851,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -871,7 +871,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -882,7 +882,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -893,7 +893,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -931,7 +931,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -951,7 +951,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -960,7 +960,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -980,7 +980,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -1000,7 +1000,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -1011,7 +1011,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -1049,7 +1049,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -1060,7 +1060,7 @@ - + True @@ -1085,7 +1085,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1108,7 +1108,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1117,7 +1117,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1137,7 +1137,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1157,7 +1157,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1166,7 +1166,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1186,7 +1186,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1195,7 +1195,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1224,7 +1224,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -1233,7 +1233,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -1244,7 +1244,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -1253,7 +1253,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -1271,7 +1271,7 @@ - + True @@ -1313,7 +1313,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1363,7 +1363,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1374,7 +1374,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1394,7 +1394,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -1405,7 +1405,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1414,7 +1414,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1434,7 +1434,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1443,7 +1443,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1472,7 +1472,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1483,7 +1483,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1492,7 +1492,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1503,7 +1503,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1512,7 +1512,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1523,7 +1523,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1532,7 +1532,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1543,7 +1543,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1554,7 +1554,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1574,7 +1574,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1592,7 +1592,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1601,7 +1601,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1630,7 +1630,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1677,7 +1677,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1706,7 +1706,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1717,7 +1717,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1764,7 +1764,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1784,7 +1784,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1793,7 +1793,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1813,7 +1813,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1822,7 +1822,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1833,7 +1833,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll @@ -1842,7 +1842,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll @@ -1862,7 +1862,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1871,7 +1871,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1927,7 +1927,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1947,7 +1947,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1956,7 +1956,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1965,7 +1965,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1985,7 +1985,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -2005,7 +2005,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -2025,7 +2025,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2034,7 +2034,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2043,7 +2043,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2072,7 +2072,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2081,7 +2081,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2119,7 +2119,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -2139,7 +2139,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -2159,7 +2159,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -2197,7 +2197,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -2206,7 +2206,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2226,7 +2226,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -2235,7 +2235,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -2255,7 +2255,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -2266,7 +2266,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2286,7 +2286,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -2295,7 +2295,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2306,7 +2306,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2315,7 +2315,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2326,7 +2326,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2335,7 +2335,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2346,7 +2346,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2389,7 +2389,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2398,7 +2398,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2418,7 +2418,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -2427,7 +2427,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -2438,7 +2438,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2447,7 +2447,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll diff --git a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj index e381efc6e7f..6a7cde6b0d7 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj +++ b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj @@ -58,7 +58,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -99,7 +99,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -108,7 +108,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -117,7 +117,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -126,7 +126,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -135,7 +135,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -164,7 +164,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -234,7 +234,7 @@ - + ..\..\..\packages\NUnit\lib\netstandard1.6\nunit.framework.dll @@ -281,7 +281,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -290,7 +290,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -301,7 +301,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -310,7 +310,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -330,7 +330,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -350,7 +350,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -359,7 +359,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -379,7 +379,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -399,7 +399,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -410,7 +410,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -421,7 +421,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -459,7 +459,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -479,7 +479,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -499,7 +499,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -510,7 +510,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -548,7 +548,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -559,7 +559,7 @@ - + True @@ -584,7 +584,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -607,7 +607,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -616,7 +616,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -636,7 +636,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -656,7 +656,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -665,7 +665,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -685,7 +685,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -694,7 +694,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -723,7 +723,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -732,7 +732,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -743,7 +743,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -752,7 +752,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -770,7 +770,7 @@ - + True @@ -809,7 +809,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -859,7 +859,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -870,7 +870,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -890,7 +890,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -901,7 +901,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -910,7 +910,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -930,7 +930,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -939,7 +939,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -968,7 +968,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -979,7 +979,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -988,7 +988,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -999,7 +999,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1008,7 +1008,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1019,7 +1019,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1028,7 +1028,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1039,7 +1039,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1050,7 +1050,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1070,7 +1070,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1126,7 +1126,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1176,7 +1176,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1205,7 +1205,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1216,7 +1216,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1263,7 +1263,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1283,7 +1283,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1292,7 +1292,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1312,7 +1312,7 @@ - + ..\..\..\packages\System.Runtime.Loader\lib\netstandard1.5\System.Runtime.Loader.dll @@ -1321,7 +1321,7 @@ - + ..\..\..\packages\System.Runtime.Loader\ref\netstandard1.5\System.Runtime.Loader.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1341,7 +1341,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1397,7 +1397,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1417,7 +1417,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1426,7 +1426,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1435,7 +1435,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1455,7 +1455,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1475,7 +1475,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1495,7 +1495,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1504,7 +1504,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1513,7 +1513,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1542,7 +1542,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1551,7 +1551,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1589,7 +1589,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1609,7 +1609,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1629,7 +1629,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1667,7 +1667,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1676,7 +1676,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1696,7 +1696,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1705,7 +1705,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1725,7 +1725,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1736,7 +1736,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1765,7 +1765,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1785,7 +1785,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1796,7 +1796,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1805,7 +1805,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1816,7 +1816,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1848,7 +1848,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1857,7 +1857,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1877,7 +1877,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -1886,7 +1886,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -1915,7 +1915,7 @@ - + ..\..\..\packages\Unquote\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1\Unquote.dll diff --git a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj index ce1e71f4a44..d8847a9edf3 100644 --- a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj +++ b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj @@ -61,7 +61,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -95,7 +95,7 @@ - + ..\..\..\packages\FsCheck\lib\netstandard1.6\FsCheck.dll @@ -104,7 +104,7 @@ - + ..\..\..\packages\FsCheck\lib\portable-net45+netcore45\FsCheck.dll @@ -113,7 +113,7 @@ - + ..\..\..\packages\FsCheck\lib\portable-net45+netcore45+wp8\FsCheck.dll @@ -122,7 +122,7 @@ - + ..\..\..\packages\FsCheck\lib\portable-net45+netcore45+wpa81+wp8\FsCheck.dll @@ -142,7 +142,7 @@ - + ..\..\..\packages\FsCheck.Xunit\lib\netstandard1.6\FsCheck.Xunit.dll @@ -180,7 +180,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -189,7 +189,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -198,7 +198,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -207,7 +207,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -216,7 +216,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -245,7 +245,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -274,7 +274,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -283,7 +283,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -294,7 +294,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -303,7 +303,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -323,7 +323,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -343,7 +343,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -352,7 +352,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -372,7 +372,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -392,7 +392,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -403,7 +403,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -414,7 +414,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -452,7 +452,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -472,7 +472,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -492,7 +492,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -503,7 +503,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -541,7 +541,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -552,7 +552,7 @@ - + True @@ -577,7 +577,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -600,7 +600,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -609,7 +609,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -629,7 +629,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -649,7 +649,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -658,7 +658,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -678,7 +678,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -687,7 +687,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -716,7 +716,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -725,7 +725,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -736,7 +736,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -745,7 +745,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -763,7 +763,7 @@ - + True @@ -802,7 +802,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -852,7 +852,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -863,7 +863,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -883,7 +883,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -894,7 +894,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -903,7 +903,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -923,7 +923,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -932,7 +932,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -961,7 +961,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -972,7 +972,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -981,7 +981,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -992,7 +992,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1001,7 +1001,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1012,7 +1012,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1021,7 +1021,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1032,7 +1032,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1043,7 +1043,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1063,7 +1063,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1081,7 +1081,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1090,7 +1090,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1119,7 +1119,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1169,7 +1169,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1198,7 +1198,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1209,7 +1209,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1256,7 +1256,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1276,7 +1276,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1285,7 +1285,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1305,7 +1305,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1314,7 +1314,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1370,7 +1370,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1390,7 +1390,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1399,7 +1399,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1428,7 +1428,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1448,7 +1448,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1468,7 +1468,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1477,7 +1477,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1486,7 +1486,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1515,7 +1515,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1524,7 +1524,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1582,7 +1582,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1602,7 +1602,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1640,7 +1640,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1649,7 +1649,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1669,7 +1669,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1678,7 +1678,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1698,7 +1698,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1709,7 +1709,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -1729,7 +1729,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1738,7 +1738,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1749,7 +1749,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1758,7 +1758,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1769,7 +1769,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1778,7 +1778,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1789,7 +1789,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1818,7 +1818,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1827,7 +1827,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1847,7 +1847,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -1856,7 +1856,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -1876,7 +1876,7 @@ - + ..\..\..\packages\xunit.abstractions\lib\netstandard1.0\xunit.abstractions.dll @@ -1887,7 +1887,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -1898,7 +1898,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -1918,7 +1918,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\netstandard1.1\xunit.execution.dotnet.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj index 56f3cfd98b0..d3d102a8545 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj @@ -87,7 +87,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -96,7 +96,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -105,7 +105,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -114,7 +114,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -123,7 +123,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -234,7 +234,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -293,7 +293,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -341,7 +341,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -370,7 +370,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -390,7 +390,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -399,7 +399,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -419,7 +419,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -439,7 +439,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -450,7 +450,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -461,7 +461,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -499,7 +499,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -519,7 +519,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -539,7 +539,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -550,7 +550,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -591,7 +591,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -602,7 +602,7 @@ - + True @@ -627,7 +627,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -647,7 +647,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -667,7 +667,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -676,7 +676,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -696,7 +696,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -705,7 +705,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -734,7 +734,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -743,7 +743,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -754,7 +754,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -763,7 +763,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -792,7 +792,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -821,7 +821,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -832,7 +832,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -843,7 +843,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -852,7 +852,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -872,7 +872,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -881,7 +881,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -910,7 +910,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -921,7 +921,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -930,7 +930,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -941,7 +941,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -950,7 +950,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -961,7 +961,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -970,7 +970,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -981,7 +981,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -992,7 +992,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1012,7 +1012,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1030,7 +1030,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1039,7 +1039,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1068,7 +1068,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1118,7 +1118,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1147,7 +1147,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1158,7 +1158,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1205,7 +1205,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1216,7 +1216,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1225,7 +1225,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1281,7 +1281,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1301,7 +1301,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1310,7 +1310,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1319,7 +1319,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1339,7 +1339,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1359,7 +1359,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1379,7 +1379,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1388,7 +1388,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1397,7 +1397,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1426,7 +1426,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1435,7 +1435,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1473,7 +1473,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1493,7 +1493,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1513,7 +1513,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1551,7 +1551,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1560,7 +1560,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1580,7 +1580,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1589,7 +1589,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1609,7 +1609,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1620,7 +1620,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1629,7 +1629,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1640,7 +1640,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1649,7 +1649,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1660,7 +1660,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1669,7 +1669,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1680,7 +1680,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj index 532d4e76aa2..7f3b63fbc68 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj @@ -172,7 +172,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -181,7 +181,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -190,7 +190,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -199,7 +199,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -208,7 +208,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -316,7 +316,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -375,7 +375,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -423,7 +423,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -432,7 +432,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -452,7 +452,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -472,7 +472,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -481,7 +481,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -501,7 +501,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -521,7 +521,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -532,7 +532,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -543,7 +543,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -581,7 +581,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -601,7 +601,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -621,7 +621,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -632,7 +632,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -670,7 +670,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -681,7 +681,7 @@ - + True @@ -706,7 +706,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -726,7 +726,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -746,7 +746,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -755,7 +755,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -775,7 +775,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -784,7 +784,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -813,7 +813,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -822,7 +822,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -833,7 +833,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -842,7 +842,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -860,7 +860,7 @@ - + True @@ -899,7 +899,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -949,7 +949,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -960,7 +960,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -971,7 +971,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -980,7 +980,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1000,7 +1000,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1009,7 +1009,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1038,7 +1038,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1049,7 +1049,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1058,7 +1058,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1069,7 +1069,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1078,7 +1078,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1089,7 +1089,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1098,7 +1098,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1109,7 +1109,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1120,7 +1120,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1140,7 +1140,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1158,7 +1158,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1167,7 +1167,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1196,7 +1196,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1246,7 +1246,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1275,7 +1275,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1286,7 +1286,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1333,7 +1333,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1344,7 +1344,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1353,7 +1353,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1409,7 +1409,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1429,7 +1429,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1438,7 +1438,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1447,7 +1447,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1467,7 +1467,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1487,7 +1487,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1507,7 +1507,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1516,7 +1516,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1525,7 +1525,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1554,7 +1554,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1563,7 +1563,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1601,7 +1601,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1621,7 +1621,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1641,7 +1641,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1679,7 +1679,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1688,7 +1688,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1708,7 +1708,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1717,7 +1717,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1737,7 +1737,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1748,7 +1748,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1757,7 +1757,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1768,7 +1768,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1777,7 +1777,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1788,7 +1788,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1797,7 +1797,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1808,7 +1808,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj index e4a4e888368..64975194761 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj @@ -171,7 +171,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -180,7 +180,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -189,7 +189,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -198,7 +198,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -207,7 +207,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -315,7 +315,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -374,7 +374,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -422,7 +422,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -431,7 +431,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -451,7 +451,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -471,7 +471,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -480,7 +480,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -500,7 +500,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -520,7 +520,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -531,7 +531,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -542,7 +542,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -580,7 +580,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -600,7 +600,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -620,7 +620,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -631,7 +631,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -669,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -680,7 +680,7 @@ - + True @@ -705,7 +705,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -725,7 +725,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -745,7 +745,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -754,7 +754,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -774,7 +774,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -783,7 +783,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -812,7 +812,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -821,7 +821,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -832,7 +832,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -841,7 +841,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -859,7 +859,7 @@ - + True @@ -898,7 +898,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -948,7 +948,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -959,7 +959,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -970,7 +970,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -979,7 +979,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -999,7 +999,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1008,7 +1008,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1037,7 +1037,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1048,7 +1048,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1057,7 +1057,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1068,7 +1068,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1108,7 +1108,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1119,7 +1119,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1139,7 +1139,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1157,7 +1157,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1166,7 +1166,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1195,7 +1195,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1245,7 +1245,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1274,7 +1274,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1285,7 +1285,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1343,7 +1343,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1352,7 +1352,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1428,7 +1428,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1437,7 +1437,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1446,7 +1446,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1466,7 +1466,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1486,7 +1486,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1506,7 +1506,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1515,7 +1515,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1524,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1553,7 +1553,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1600,7 +1600,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1620,7 +1620,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1640,7 +1640,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1678,7 +1678,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1687,7 +1687,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1707,7 +1707,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1716,7 +1716,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1736,7 +1736,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1747,7 +1747,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1767,7 +1767,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1787,7 +1787,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1796,7 +1796,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1807,7 +1807,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj index e4a4e888368..64975194761 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj @@ -171,7 +171,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -180,7 +180,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -189,7 +189,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -198,7 +198,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -207,7 +207,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -315,7 +315,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -374,7 +374,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -422,7 +422,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -431,7 +431,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -451,7 +451,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -471,7 +471,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -480,7 +480,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -500,7 +500,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -520,7 +520,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -531,7 +531,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -542,7 +542,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -580,7 +580,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -600,7 +600,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -620,7 +620,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -631,7 +631,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -669,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -680,7 +680,7 @@ - + True @@ -705,7 +705,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -725,7 +725,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -745,7 +745,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -754,7 +754,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -774,7 +774,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -783,7 +783,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -812,7 +812,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -821,7 +821,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -832,7 +832,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -841,7 +841,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -859,7 +859,7 @@ - + True @@ -898,7 +898,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -948,7 +948,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -959,7 +959,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -970,7 +970,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -979,7 +979,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -999,7 +999,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1008,7 +1008,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1037,7 +1037,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1048,7 +1048,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1057,7 +1057,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1068,7 +1068,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1108,7 +1108,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1119,7 +1119,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1139,7 +1139,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1157,7 +1157,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1166,7 +1166,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1195,7 +1195,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1245,7 +1245,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1274,7 +1274,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1285,7 +1285,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1343,7 +1343,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1352,7 +1352,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1428,7 +1428,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1437,7 +1437,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1446,7 +1446,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1466,7 +1466,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1486,7 +1486,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1506,7 +1506,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1515,7 +1515,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1524,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1553,7 +1553,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1600,7 +1600,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1620,7 +1620,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1640,7 +1640,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1678,7 +1678,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1687,7 +1687,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1707,7 +1707,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1716,7 +1716,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1736,7 +1736,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1747,7 +1747,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1767,7 +1767,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1787,7 +1787,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1796,7 +1796,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1807,7 +1807,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj index 4a840b83d5b..740ad1b0230 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj @@ -171,7 +171,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -180,7 +180,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -189,7 +189,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -198,7 +198,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -207,7 +207,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -315,7 +315,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -374,7 +374,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -422,7 +422,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -431,7 +431,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -451,7 +451,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -471,7 +471,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -480,7 +480,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -500,7 +500,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -520,7 +520,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -531,7 +531,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -542,7 +542,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -580,7 +580,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -600,7 +600,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -620,7 +620,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -631,7 +631,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -669,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -680,7 +680,7 @@ - + True @@ -705,7 +705,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -725,7 +725,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -745,7 +745,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -754,7 +754,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -774,7 +774,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -783,7 +783,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -812,7 +812,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -821,7 +821,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -832,7 +832,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -841,7 +841,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -859,7 +859,7 @@ - + True @@ -898,7 +898,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -948,7 +948,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -959,7 +959,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -970,7 +970,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -979,7 +979,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -999,7 +999,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1008,7 +1008,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1037,7 +1037,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1048,7 +1048,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1057,7 +1057,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1068,7 +1068,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1108,7 +1108,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1119,7 +1119,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1139,7 +1139,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1157,7 +1157,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1166,7 +1166,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1195,7 +1195,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1245,7 +1245,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1274,7 +1274,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1285,7 +1285,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1343,7 +1343,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1352,7 +1352,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1428,7 +1428,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1437,7 +1437,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1446,7 +1446,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1466,7 +1466,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1486,7 +1486,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1506,7 +1506,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1515,7 +1515,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1524,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1553,7 +1553,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1600,7 +1600,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1620,7 +1620,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1640,7 +1640,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1678,7 +1678,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1687,7 +1687,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1707,7 +1707,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1716,7 +1716,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1736,7 +1736,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1747,7 +1747,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1767,7 +1767,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1787,7 +1787,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1796,7 +1796,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1807,7 +1807,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj index 4a840b83d5b..740ad1b0230 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj @@ -171,7 +171,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -180,7 +180,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -189,7 +189,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -198,7 +198,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -207,7 +207,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -315,7 +315,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -374,7 +374,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -422,7 +422,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -431,7 +431,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -451,7 +451,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -471,7 +471,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -480,7 +480,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -500,7 +500,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -520,7 +520,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -531,7 +531,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -542,7 +542,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -580,7 +580,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -600,7 +600,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -620,7 +620,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -631,7 +631,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -669,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -680,7 +680,7 @@ - + True @@ -705,7 +705,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -725,7 +725,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -745,7 +745,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -754,7 +754,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -774,7 +774,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -783,7 +783,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -812,7 +812,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -821,7 +821,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -832,7 +832,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -841,7 +841,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -859,7 +859,7 @@ - + True @@ -898,7 +898,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -948,7 +948,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -959,7 +959,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -970,7 +970,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -979,7 +979,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -999,7 +999,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1008,7 +1008,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1037,7 +1037,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1048,7 +1048,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1057,7 +1057,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1068,7 +1068,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1108,7 +1108,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1119,7 +1119,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1139,7 +1139,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1157,7 +1157,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1166,7 +1166,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1195,7 +1195,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1245,7 +1245,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1274,7 +1274,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1285,7 +1285,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1343,7 +1343,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1352,7 +1352,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1428,7 +1428,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1437,7 +1437,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1446,7 +1446,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1466,7 +1466,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1486,7 +1486,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1506,7 +1506,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1515,7 +1515,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1524,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1553,7 +1553,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1600,7 +1600,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1620,7 +1620,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1640,7 +1640,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1678,7 +1678,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1687,7 +1687,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1707,7 +1707,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1716,7 +1716,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1736,7 +1736,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1747,7 +1747,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1767,7 +1767,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1787,7 +1787,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1796,7 +1796,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1807,7 +1807,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj index e4a4e888368..64975194761 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj @@ -171,7 +171,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -180,7 +180,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -189,7 +189,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -198,7 +198,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -207,7 +207,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -315,7 +315,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -374,7 +374,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -422,7 +422,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -431,7 +431,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -451,7 +451,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -471,7 +471,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -480,7 +480,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -500,7 +500,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -520,7 +520,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -531,7 +531,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -542,7 +542,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -580,7 +580,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -600,7 +600,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -620,7 +620,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -631,7 +631,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -669,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -680,7 +680,7 @@ - + True @@ -705,7 +705,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -725,7 +725,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -745,7 +745,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -754,7 +754,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -774,7 +774,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -783,7 +783,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -812,7 +812,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -821,7 +821,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -832,7 +832,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -841,7 +841,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -859,7 +859,7 @@ - + True @@ -898,7 +898,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -948,7 +948,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -959,7 +959,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -970,7 +970,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -979,7 +979,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -999,7 +999,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1008,7 +1008,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1037,7 +1037,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1048,7 +1048,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1057,7 +1057,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1068,7 +1068,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1097,7 +1097,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1108,7 +1108,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1119,7 +1119,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1139,7 +1139,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1157,7 +1157,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1166,7 +1166,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1195,7 +1195,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1245,7 +1245,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1274,7 +1274,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1285,7 +1285,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1343,7 +1343,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1352,7 +1352,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1428,7 +1428,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1437,7 +1437,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1446,7 +1446,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1466,7 +1466,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1486,7 +1486,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1506,7 +1506,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1515,7 +1515,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1524,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1553,7 +1553,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1600,7 +1600,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1620,7 +1620,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1640,7 +1640,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1678,7 +1678,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1687,7 +1687,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1707,7 +1707,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1716,7 +1716,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1736,7 +1736,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1747,7 +1747,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1767,7 +1767,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1787,7 +1787,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1796,7 +1796,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1807,7 +1807,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj index 624c09fe9d8..e166a3dfb68 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj @@ -172,7 +172,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -181,7 +181,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -190,7 +190,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -199,7 +199,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -208,7 +208,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -316,7 +316,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -375,7 +375,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -423,7 +423,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -432,7 +432,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -452,7 +452,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -472,7 +472,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -481,7 +481,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -501,7 +501,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -521,7 +521,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -532,7 +532,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -543,7 +543,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -581,7 +581,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -601,7 +601,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -621,7 +621,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -632,7 +632,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -670,7 +670,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -681,7 +681,7 @@ - + True @@ -706,7 +706,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -726,7 +726,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -746,7 +746,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -755,7 +755,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -775,7 +775,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -784,7 +784,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -813,7 +813,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -822,7 +822,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -833,7 +833,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -842,7 +842,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -860,7 +860,7 @@ - + True @@ -899,7 +899,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -949,7 +949,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -960,7 +960,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -971,7 +971,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -980,7 +980,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1000,7 +1000,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1009,7 +1009,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1038,7 +1038,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1049,7 +1049,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1058,7 +1058,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1069,7 +1069,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1078,7 +1078,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1089,7 +1089,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1098,7 +1098,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1109,7 +1109,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1120,7 +1120,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1140,7 +1140,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1158,7 +1158,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1167,7 +1167,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1196,7 +1196,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1246,7 +1246,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1275,7 +1275,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1286,7 +1286,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1333,7 +1333,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1344,7 +1344,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1353,7 +1353,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1409,7 +1409,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1429,7 +1429,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1438,7 +1438,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1447,7 +1447,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1467,7 +1467,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1487,7 +1487,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1507,7 +1507,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1516,7 +1516,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1525,7 +1525,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1554,7 +1554,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1563,7 +1563,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1601,7 +1601,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1621,7 +1621,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1641,7 +1641,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1679,7 +1679,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1688,7 +1688,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1708,7 +1708,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1717,7 +1717,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1737,7 +1737,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1748,7 +1748,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1757,7 +1757,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1768,7 +1768,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1777,7 +1777,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1788,7 +1788,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1797,7 +1797,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1808,7 +1808,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj index 624c09fe9d8..e166a3dfb68 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj @@ -172,7 +172,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -181,7 +181,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -190,7 +190,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -199,7 +199,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -208,7 +208,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -316,7 +316,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -375,7 +375,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -423,7 +423,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -432,7 +432,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -452,7 +452,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -472,7 +472,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -481,7 +481,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -501,7 +501,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -521,7 +521,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -532,7 +532,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -543,7 +543,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -581,7 +581,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -601,7 +601,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -621,7 +621,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -632,7 +632,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -670,7 +670,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -681,7 +681,7 @@ - + True @@ -706,7 +706,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -726,7 +726,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -746,7 +746,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -755,7 +755,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -775,7 +775,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -784,7 +784,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -813,7 +813,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -822,7 +822,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -833,7 +833,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -842,7 +842,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -860,7 +860,7 @@ - + True @@ -899,7 +899,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -949,7 +949,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -960,7 +960,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -971,7 +971,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -980,7 +980,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1000,7 +1000,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1009,7 +1009,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1038,7 +1038,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1049,7 +1049,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1058,7 +1058,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1069,7 +1069,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1078,7 +1078,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1089,7 +1089,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1098,7 +1098,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1109,7 +1109,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1120,7 +1120,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1140,7 +1140,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1158,7 +1158,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1167,7 +1167,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1196,7 +1196,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1246,7 +1246,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1275,7 +1275,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1286,7 +1286,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1333,7 +1333,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1344,7 +1344,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1353,7 +1353,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1409,7 +1409,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1429,7 +1429,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1438,7 +1438,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1447,7 +1447,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1467,7 +1467,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1487,7 +1487,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1507,7 +1507,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1516,7 +1516,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1525,7 +1525,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1554,7 +1554,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1563,7 +1563,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1601,7 +1601,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1621,7 +1621,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1641,7 +1641,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1679,7 +1679,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1688,7 +1688,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1708,7 +1708,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1717,7 +1717,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1737,7 +1737,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1748,7 +1748,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1757,7 +1757,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1768,7 +1768,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1777,7 +1777,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1788,7 +1788,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1797,7 +1797,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1808,7 +1808,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/Test.FAKECore.csproj b/src/test/Test.FAKECore/Test.FAKECore.csproj index 29a81123329..d0dc78ed103 100644 --- a/src/test/Test.FAKECore/Test.FAKECore.csproj +++ b/src/test/Test.FAKECore/Test.FAKECore.csproj @@ -440,7 +440,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -449,7 +449,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -458,7 +458,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -467,7 +467,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -476,7 +476,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -587,7 +587,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -646,7 +646,7 @@ - + ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -694,7 +694,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -703,7 +703,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -723,7 +723,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -743,7 +743,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -752,7 +752,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -772,7 +772,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -792,7 +792,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -803,7 +803,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -814,7 +814,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -852,7 +852,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -872,7 +872,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -892,7 +892,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -903,7 +903,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -944,7 +944,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -955,7 +955,7 @@ - + True @@ -980,7 +980,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1000,7 +1000,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1020,7 +1020,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1029,7 +1029,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1049,7 +1049,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1058,7 +1058,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1087,7 +1087,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -1096,7 +1096,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -1107,7 +1107,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -1116,7 +1116,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -1143,7 +1143,7 @@ - + True @@ -1182,7 +1182,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1232,7 +1232,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1243,7 +1243,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1254,7 +1254,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1263,7 +1263,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1283,7 +1283,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1292,7 +1292,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1321,7 +1321,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1341,7 +1341,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1352,7 +1352,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1361,7 +1361,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1372,7 +1372,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1381,7 +1381,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1392,7 +1392,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1403,7 +1403,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1423,7 +1423,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1441,7 +1441,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1450,7 +1450,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1479,7 +1479,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1529,7 +1529,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1558,7 +1558,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1569,7 +1569,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1616,7 +1616,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1627,7 +1627,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1636,7 +1636,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1692,7 +1692,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1712,7 +1712,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1721,7 +1721,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1730,7 +1730,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1750,7 +1750,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1770,7 +1770,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1790,7 +1790,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1799,7 +1799,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1808,7 +1808,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1837,7 +1837,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1846,7 +1846,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1884,7 +1884,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1904,7 +1904,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1924,7 +1924,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1962,7 +1962,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1971,7 +1971,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1991,7 +1991,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -2000,7 +2000,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -2020,7 +2020,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -2031,7 +2031,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -2040,7 +2040,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2051,7 +2051,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2060,7 +2060,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2071,7 +2071,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2080,7 +2080,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2091,7 +2091,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.FAKECore/TestData/fake_no_template.csproj b/src/test/Test.FAKECore/TestData/fake_no_template.csproj index 40207cc2d4b..aa5961527c7 100644 --- a/src/test/Test.FAKECore/TestData/fake_no_template.csproj +++ b/src/test/Test.FAKECore/TestData/fake_no_template.csproj @@ -78,7 +78,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -87,7 +87,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -96,7 +96,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -105,7 +105,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -114,7 +114,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -225,7 +225,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -284,7 +284,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll @@ -332,7 +332,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -341,7 +341,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -361,7 +361,7 @@ - + ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -381,7 +381,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -390,7 +390,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -410,7 +410,7 @@ - + ..\..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -430,7 +430,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -441,7 +441,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -452,7 +452,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -490,7 +490,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -510,7 +510,7 @@ - + ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -530,7 +530,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -541,7 +541,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -582,7 +582,7 @@ - + ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -593,7 +593,7 @@ - + True @@ -618,7 +618,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -638,7 +638,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -658,7 +658,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -667,7 +667,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -687,7 +687,7 @@ - + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -696,7 +696,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -725,7 +725,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -734,7 +734,7 @@ - + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -745,7 +745,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -754,7 +754,7 @@ - + ..\..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -781,7 +781,7 @@ - + True @@ -820,7 +820,7 @@ - + ..\..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -870,7 +870,7 @@ - + ..\..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -881,7 +881,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -892,7 +892,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -901,7 +901,7 @@ - + ..\..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -921,7 +921,7 @@ - + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -930,7 +930,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -959,7 +959,7 @@ - + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -970,7 +970,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -979,7 +979,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -990,7 +990,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -999,7 +999,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1010,7 +1010,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1019,7 +1019,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1030,7 +1030,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1041,7 +1041,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1061,7 +1061,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1079,7 +1079,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1088,7 +1088,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1117,7 +1117,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1167,7 +1167,7 @@ - + ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1196,7 +1196,7 @@ - + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1207,7 +1207,7 @@ - + ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1254,7 +1254,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1265,7 +1265,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1274,7 +1274,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1330,7 +1330,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1350,7 +1350,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1359,7 +1359,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1368,7 +1368,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1388,7 +1388,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1428,7 +1428,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1437,7 +1437,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1446,7 +1446,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1475,7 +1475,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1484,7 +1484,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1522,7 +1522,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1542,7 +1542,7 @@ - + ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1600,7 +1600,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1609,7 +1609,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1629,7 +1629,7 @@ - + ..\..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1638,7 +1638,7 @@ - + ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1658,7 +1658,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1669,7 +1669,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1678,7 +1678,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1689,7 +1689,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1698,7 +1698,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1709,7 +1709,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1718,7 +1718,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1729,7 +1729,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj b/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj index 755ffc8082f..8cdc06efd11 100644 --- a/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj +++ b/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj @@ -72,7 +72,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -106,7 +106,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -115,7 +115,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -124,7 +124,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -133,7 +133,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -142,7 +142,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -171,7 +171,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -200,7 +200,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -209,7 +209,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -220,7 +220,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -229,7 +229,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -249,7 +249,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -269,7 +269,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -278,7 +278,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -298,7 +298,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -318,7 +318,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -329,7 +329,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -340,7 +340,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -378,7 +378,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -398,7 +398,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -418,7 +418,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -429,7 +429,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -467,7 +467,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -478,7 +478,7 @@ - + True @@ -503,7 +503,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -526,7 +526,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -535,7 +535,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -555,7 +555,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -575,7 +575,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -584,7 +584,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -604,7 +604,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -613,7 +613,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -642,7 +642,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -651,7 +651,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -662,7 +662,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -671,7 +671,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -689,7 +689,7 @@ - + True @@ -728,7 +728,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -778,7 +778,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -789,7 +789,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -809,7 +809,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -820,7 +820,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -829,7 +829,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -849,7 +849,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -858,7 +858,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -887,7 +887,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -898,7 +898,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -907,7 +907,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -918,7 +918,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -927,7 +927,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -938,7 +938,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -947,7 +947,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -958,7 +958,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -969,7 +969,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -989,7 +989,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1007,7 +1007,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1016,7 +1016,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1045,7 +1045,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1095,7 +1095,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1124,7 +1124,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1135,7 +1135,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1182,7 +1182,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1202,7 +1202,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1211,7 +1211,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1231,7 +1231,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1240,7 +1240,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1296,7 +1296,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1316,7 +1316,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1325,7 +1325,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1334,7 +1334,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1354,7 +1354,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1374,7 +1374,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1394,7 +1394,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1403,7 +1403,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1412,7 +1412,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1441,7 +1441,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1450,7 +1450,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1488,7 +1488,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1508,7 +1508,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1528,7 +1528,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1566,7 +1566,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1575,7 +1575,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1595,7 +1595,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1604,7 +1604,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1624,7 +1624,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1635,7 +1635,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -1655,7 +1655,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1664,7 +1664,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1675,7 +1675,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1684,7 +1684,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1695,7 +1695,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1704,7 +1704,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1715,7 +1715,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1747,7 +1747,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1756,7 +1756,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1776,7 +1776,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -1785,7 +1785,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -1805,7 +1805,7 @@ - + ..\..\..\packages\xunit.abstractions\lib\netstandard1.0\xunit.abstractions.dll @@ -1816,7 +1816,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -1827,7 +1827,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -1847,7 +1847,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\netstandard1.1\xunit.execution.dotnet.dll diff --git a/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj b/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj index 4d76c46d297..e471b82215a 100644 --- a/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj +++ b/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj @@ -88,7 +88,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -133,7 +133,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -142,7 +142,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -151,7 +151,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -160,7 +160,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -169,7 +169,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -207,7 +207,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -216,7 +216,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -282,7 +282,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -371,7 +371,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -380,7 +380,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -389,7 +389,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -418,7 +418,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -427,7 +427,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -438,7 +438,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -447,7 +447,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -467,7 +467,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -487,7 +487,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -496,7 +496,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -507,7 +507,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -516,7 +516,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -527,7 +527,7 @@ - + ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll @@ -536,7 +536,7 @@ - + ..\..\..\packages\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll @@ -547,7 +547,7 @@ - + ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll @@ -556,7 +556,7 @@ - + ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll @@ -567,7 +567,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll @@ -576,7 +576,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll @@ -587,7 +587,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll @@ -605,7 +605,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -614,7 +614,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -634,7 +634,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -654,7 +654,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -665,7 +665,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -676,7 +676,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -714,7 +714,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -734,7 +734,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -743,7 +743,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -763,7 +763,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -783,7 +783,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -794,7 +794,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -832,7 +832,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -843,7 +843,7 @@ - + True @@ -868,7 +868,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -891,7 +891,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -900,7 +900,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -920,7 +920,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -940,7 +940,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -949,7 +949,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -969,7 +969,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -978,7 +978,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1007,7 +1007,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -1016,7 +1016,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -1027,7 +1027,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -1036,7 +1036,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -1054,7 +1054,7 @@ - + True @@ -1093,7 +1093,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1143,7 +1143,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1154,7 +1154,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1174,7 +1174,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -1185,7 +1185,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1194,7 +1194,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1214,7 +1214,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1223,7 +1223,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1252,7 +1252,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1263,7 +1263,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1272,7 +1272,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1283,7 +1283,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1292,7 +1292,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1303,7 +1303,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1312,7 +1312,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1323,7 +1323,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1334,7 +1334,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1354,7 +1354,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1372,7 +1372,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1381,7 +1381,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1410,7 +1410,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1460,7 +1460,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1489,7 +1489,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1500,7 +1500,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1547,7 +1547,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1567,7 +1567,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1576,7 +1576,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1596,7 +1596,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1605,7 +1605,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1616,7 +1616,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll @@ -1625,7 +1625,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll @@ -1645,7 +1645,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1654,7 +1654,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1710,7 +1710,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1730,7 +1730,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1739,7 +1739,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1748,7 +1748,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1768,7 +1768,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1788,7 +1788,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1808,7 +1808,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1817,7 +1817,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1826,7 +1826,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1855,7 +1855,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1864,7 +1864,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1902,7 +1902,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1922,7 +1922,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1942,7 +1942,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1980,7 +1980,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1989,7 +1989,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2009,7 +2009,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -2018,7 +2018,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -2038,7 +2038,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -2049,7 +2049,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2069,7 +2069,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -2078,7 +2078,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2089,7 +2089,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2098,7 +2098,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2109,7 +2109,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2118,7 +2118,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2129,7 +2129,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2172,7 +2172,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2181,7 +2181,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2201,7 +2201,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -2210,7 +2210,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -2221,7 +2221,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2230,7 +2230,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll @@ -2250,7 +2250,7 @@ - + ..\..\..\packages\xunit.abstractions\lib\netstandard1.0\xunit.abstractions.dll @@ -2261,7 +2261,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -2272,7 +2272,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -2292,7 +2292,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\netstandard1.1\xunit.execution.dotnet.dll diff --git a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj index dbad2b0bc0c..76ad6b7e8eb 100644 --- a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj +++ b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj @@ -127,7 +127,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -179,7 +179,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -188,7 +188,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -197,7 +197,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -206,7 +206,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -215,7 +215,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -303,7 +303,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -335,7 +335,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -413,7 +413,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll @@ -422,7 +422,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -431,7 +431,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -460,7 +460,7 @@ - + ..\..\..\packages\SSH.NET\lib\netstandard1.3\Renci.SshNet.dll @@ -516,7 +516,7 @@ - + ..\..\..\packages\SshNet.Security.Cryptography\lib\netstandard1.3\SshNet.Security.Cryptography.dll @@ -590,7 +590,7 @@ - + ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll @@ -599,7 +599,7 @@ - + ..\..\..\packages\System.AppContext\ref\netstandard1.6\System.AppContext.dll @@ -610,7 +610,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -619,7 +619,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -639,7 +639,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -659,7 +659,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -668,7 +668,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -679,7 +679,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -688,7 +688,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -699,7 +699,7 @@ - + ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll @@ -708,7 +708,7 @@ - + ..\..\..\packages\System.Collections.Specialized\ref\netstandard1.3\System.Collections.Specialized.dll @@ -719,7 +719,7 @@ - + ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll @@ -728,7 +728,7 @@ - + ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll @@ -739,7 +739,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll @@ -748,7 +748,7 @@ - + ..\..\..\packages\System.ComponentModel.Primitives\ref\netstandard1.0\System.ComponentModel.Primitives.dll @@ -759,7 +759,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll @@ -777,7 +777,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -786,7 +786,7 @@ - + ..\..\..\packages\System.ComponentModel.TypeConverter\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll @@ -806,7 +806,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -826,7 +826,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -837,7 +837,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -848,7 +848,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -859,7 +859,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -897,7 +897,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -917,7 +917,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -926,7 +926,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -946,7 +946,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -966,7 +966,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -977,7 +977,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -1018,7 +1018,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -1029,7 +1029,7 @@ - + True @@ -1054,7 +1054,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1077,7 +1077,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1086,7 +1086,7 @@ - + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1106,7 +1106,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1126,7 +1126,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1135,7 +1135,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -1155,7 +1155,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1164,7 +1164,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1193,7 +1193,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -1202,7 +1202,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -1213,7 +1213,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -1222,7 +1222,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -1249,7 +1249,7 @@ - + True @@ -1288,7 +1288,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -1320,7 +1320,7 @@ - + ..\..\..\packages\System.Net.NameResolution\ref\netstandard1.3\System.Net.NameResolution.dll @@ -1349,7 +1349,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -1360,7 +1360,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1380,7 +1380,7 @@ - + ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll @@ -1391,7 +1391,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1400,7 +1400,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -1420,7 +1420,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1429,7 +1429,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1458,7 +1458,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1469,7 +1469,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1478,7 +1478,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1489,7 +1489,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1498,7 +1498,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1509,7 +1509,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -1518,7 +1518,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -1529,7 +1529,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1540,7 +1540,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1560,7 +1560,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1578,7 +1578,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1587,7 +1587,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1616,7 +1616,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1666,7 +1666,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1695,7 +1695,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1706,7 +1706,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1753,7 +1753,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1773,7 +1773,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1782,7 +1782,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1802,7 +1802,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1811,7 +1811,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1822,7 +1822,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll @@ -1831,7 +1831,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll @@ -1851,7 +1851,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1860,7 +1860,7 @@ - + ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll @@ -1871,7 +1871,7 @@ - + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll @@ -1880,7 +1880,7 @@ - + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll @@ -1936,7 +1936,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1956,7 +1956,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1965,7 +1965,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1974,7 +1974,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1994,7 +1994,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -2014,7 +2014,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -2034,7 +2034,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2043,7 +2043,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2052,7 +2052,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2081,7 +2081,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2090,7 +2090,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2128,7 +2128,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -2139,7 +2139,7 @@ - + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll @@ -2148,7 +2148,7 @@ - + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll @@ -2159,7 +2159,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll @@ -2168,7 +2168,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll @@ -2177,7 +2177,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -2186,7 +2186,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll @@ -2206,7 +2206,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -2226,7 +2226,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -2264,7 +2264,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -2273,7 +2273,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2293,7 +2293,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -2302,7 +2302,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -2322,7 +2322,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -2333,7 +2333,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2353,7 +2353,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -2362,7 +2362,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -2373,7 +2373,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2382,7 +2382,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2393,7 +2393,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2402,7 +2402,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2413,7 +2413,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2442,7 +2442,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2451,7 +2451,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2471,7 +2471,7 @@ - + ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll @@ -2480,7 +2480,7 @@ - + ..\..\..\packages\System.Xml.XDocument\ref\netstandard1.3\System.Xml.XDocument.dll @@ -2491,7 +2491,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2500,7 +2500,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll @@ -2511,7 +2511,7 @@ - + ..\..\..\packages\System.Xml.XPath\lib\netstandard1.3\System.Xml.XPath.dll @@ -2520,7 +2520,7 @@ - + ..\..\..\packages\System.Xml.XPath\ref\netstandard1.3\System.Xml.XPath.dll @@ -2531,7 +2531,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\netstandard1.3\System.Xml.XPath.XmlDocument.dll @@ -2540,7 +2540,7 @@ - + ..\..\..\packages\System.Xml.XPath.XmlDocument\ref\netstandard1.3\System.Xml.XPath.XmlDocument.dll diff --git a/src/test/Test.Git/Test.Git.csproj b/src/test/Test.Git/Test.Git.csproj index fc96ffa3d9f..4e8e3bde6a7 100644 --- a/src/test/Test.Git/Test.Git.csproj +++ b/src/test/Test.Git/Test.Git.csproj @@ -109,7 +109,7 @@ - + ..\..\..\packages\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll @@ -118,7 +118,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -127,7 +127,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll @@ -136,7 +136,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll @@ -145,7 +145,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll @@ -245,7 +245,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -256,7 +256,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -265,7 +265,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -285,7 +285,7 @@ - + ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll @@ -305,7 +305,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -314,7 +314,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -334,7 +334,7 @@ - + ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll @@ -354,7 +354,7 @@ - + ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll @@ -365,7 +365,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -376,7 +376,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -414,7 +414,7 @@ - + ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll @@ -434,7 +434,7 @@ - + ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll @@ -454,7 +454,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -465,7 +465,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -506,7 +506,7 @@ - + ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll @@ -517,7 +517,7 @@ - + True @@ -542,7 +542,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -562,7 +562,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -582,7 +582,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -591,7 +591,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll @@ -611,7 +611,7 @@ - + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -620,7 +620,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -649,7 +649,7 @@ - + ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll @@ -658,7 +658,7 @@ - + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.6\System.Linq.Expressions.dll @@ -669,7 +669,7 @@ - + ..\..\..\packages\System.Linq.Queryable\ref\netstandard1.0\System.Linq.Queryable.dll @@ -678,7 +678,7 @@ - + ..\..\..\packages\System.Linq.Queryable\lib\netstandard1.3\System.Linq.Queryable.dll @@ -705,7 +705,7 @@ - + True @@ -744,7 +744,7 @@ - + ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll @@ -794,7 +794,7 @@ - + ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll @@ -805,7 +805,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -816,7 +816,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\lib\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -825,7 +825,7 @@ - + ..\..\..\packages\System.Net.WebHeaderCollection\ref\netstandard1.3\System.Net.WebHeaderCollection.dll @@ -845,7 +845,7 @@ - + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -854,7 +854,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -883,7 +883,7 @@ - + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -894,7 +894,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -903,7 +903,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -914,7 +914,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -923,7 +923,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -934,7 +934,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll @@ -943,7 +943,7 @@ - + ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll @@ -954,7 +954,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -965,7 +965,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -985,7 +985,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll @@ -1003,7 +1003,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1012,7 +1012,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1041,7 +1041,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1091,7 +1091,7 @@ - + ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll @@ -1120,7 +1120,7 @@ - + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll @@ -1131,7 +1131,7 @@ - + ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll @@ -1178,7 +1178,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll @@ -1189,7 +1189,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1198,7 +1198,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1254,7 +1254,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1274,7 +1274,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1283,7 +1283,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1292,7 +1292,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll @@ -1312,7 +1312,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll @@ -1332,7 +1332,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll @@ -1352,7 +1352,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1361,7 +1361,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1370,7 +1370,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1399,7 +1399,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1408,7 +1408,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1446,7 +1446,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll @@ -1466,7 +1466,7 @@ - + ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll @@ -1486,7 +1486,7 @@ - + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll @@ -1524,7 +1524,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1533,7 +1533,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1553,7 +1553,7 @@ - + ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll @@ -1562,7 +1562,7 @@ - + ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll @@ -1582,7 +1582,7 @@ - + ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll @@ -1593,7 +1593,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll @@ -1602,7 +1602,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll @@ -1613,7 +1613,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1622,7 +1622,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1633,7 +1633,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1642,7 +1642,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1653,7 +1653,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll From c6e1fe03471a0ebb8b75b721467feb1df8b2cf10 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 1 Oct 2017 22:55:16 +0200 Subject: [PATCH 18/25] fix performance by upgrading paket and compile new scripts for netcoreapp20 to make more APIs available. --- build.fsx | 60 ++++++++++++++----- .../before/context-exists.fsx | 1 + .../before/paket.dependencies | 3 +- .../paket.dependencies | 7 +++ .../before/reference_fake-targets.fsx | 1 + .../before/reference_fake-runtime.fsx | 1 + .../before/fail-to-compile.fsx | 1 + .../before/runtime-error.fsx | 1 + .../before/paket.dependencies | 3 +- src/app/Fake.Runtime/CompileRunner.fs | 4 +- src/app/Fake.Runtime/FakeRuntime.fs | 5 +- 11 files changed, 66 insertions(+), 21 deletions(-) create mode 100644 integrationtests/core-reference-fake-core-targets/before/.fake/reference_fake-targets.fsx/paket.dependencies diff --git a/build.fsx b/build.fsx index 0d43896b7c8..c52152aeebf 100644 --- a/build.fsx +++ b/build.fsx @@ -270,7 +270,7 @@ Target.Create "UnskipAndRevertAssemblyInfo" (fun _ -> Git.CommandHelper.directRunGitCommandAndFail "." (sprintf "checkout HEAD %s" assemblyFile) ) -Target.Create "BuildSolution" (fun _ -> +Target.Create "BuildSolution_" (fun _ -> MsBuild.MSBuildWithDefaults "Build" ["./FAKE.sln"; "./FAKE.Deploy.Web.sln"] |> Trace.Log "AppBuild-Output: " ) @@ -722,6 +722,7 @@ Target.Create "DotnetPackage" (fun _ -> Framework = Some "netcoreapp2.0" OutputPath = Some outDir }) netcoreFsproj + ) Target.Create "DotnetCoreCreateZipPackages" (fun _ -> @@ -941,36 +942,55 @@ Target.Create "EnsureTestsRun" (fun _ -> Target.Create "Default" ignore Target.Create "StartDnc" ignore Target.Create "Release" ignore +Target.Create "BuildSolution" ignore +Target.Create "AfterBuild" ignore open Fake.Core.TargetOperators + +// DotNet Core Build "Clean" - ==> "StartDnc" + ?=> "StartDnc" ==> "InstallDotnetCore" ==> "DownloadPaket" - //==> "DotnetRestore" ==> "DotnetPackage" -// Dependencies +// Full framework build "Clean" - ==> "RenameFSharpCompilerService" + ?=> "RenameFSharpCompilerService" ==> "SetAssemblyInfo" - ==> "BuildSolution" - ==> "DotnetPackage" + ==> "BuildSolution_" ==> "UnskipAndRevertAssemblyInfo" - ==> "DotnetCoreCreateZipPackages" - =?> ("TestDotnetCore", not <| Environment.hasEnvironVar "SkipIntegrationTests" && not <| Environment.hasEnvironVar "SkipTests") - ////==> "ILRepack" - =?> ("Test", not <| Environment.hasEnvironVar "SkipTests") - =?> ("BootstrapTest",not <| Environment.hasEnvironVar "SkipTests") - =?> ("BootstrapTestDotnetCore",not <| Environment.hasEnvironVar "SkipTests") - //=?> ("SourceLink", isLocalBuild && not isLinux) + ==> "BuildSolution" + +// AfterBuild -> Both Builds completed +"BuildSolution" + ==> "AfterBuild" +"DotnetPackage" + ==> "AfterBuild" + +// Create artifacts when build is finished +"AfterBuild" =?> ("CreateNuGet", not Environment.isLinux) ==> "CopyLicense" =?> ("DotnetCoreCreateChocolateyPackage", not Environment.isLinux) =?> ("GenerateDocs", BuildServer.isLocalBuild && not Environment.isLinux) ==> "Default" +// Test the full framework build +"BuildSolution" + =?> ("Test", not <| Environment.hasEnvironVar "SkipTests") + =?> ("BootstrapTest",not <| Environment.hasEnvironVar "SkipTests") + ==> "Default" + +// Test the dotnetcore build +"DotnetPackage" + ==> "DotnetCoreCreateZipPackages" + =?> ("TestDotnetCore", not <| Environment.hasEnvironVar "SkipIntegrationTests" && not <| Environment.hasEnvironVar "SkipTests") + =?> ("BootstrapTestDotnetCore",not <| Environment.hasEnvironVar "SkipTests") + ==> "Default" + +// Release stuff ('FastRelease' is to release after running 'Default') "EnsureTestsRun" =?> ("DotnetCorePushChocolateyPackage", not Environment.isLinux) =?> ("ReleaseDocs", BuildServer.isLocalBuild && not Environment.isLinux) @@ -978,12 +998,20 @@ open Fake.Core.TargetOperators ==> "PublishNuget" ==> "FastRelease" +// If 'Default' happens it needs to happen before 'EnsureTestsRun' +"Default" + ?=> "EnsureTestsRun" + +// A 'Default' includes a 'Clean' +"Clean" + ==> "Default" + +// A 'Release' includes a 'Default' "Default" ==> "Release" +// A 'Release' includes a 'FastRelease' "FastRelease" ==> "Release" -"Default" - ?=> "EnsureTestsRun" // start build Target.RunOrDefault "Default" diff --git a/integrationtests/core-context-exists/before/context-exists.fsx b/integrationtests/core-context-exists/before/context-exists.fsx index cc4bc0bfebb..b06772e9ddb 100644 --- a/integrationtests/core-context-exists/before/context-exists.fsx +++ b/integrationtests/core-context-exists/before/context-exists.fsx @@ -5,6 +5,7 @@ source ../../../nuget/dotnetcore //source https://ci.appveyor.com/nuget/paket nuget Fake.Core.Context prerelease +nuget Microsoft.NETCore.App -- Fake Dependencies -- *) #load ".fake/context-exists.fsx/intellisense.fsx" diff --git a/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies b/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies index 3c787c5f828..8e1b9e48c9c 100644 --- a/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies +++ b/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies @@ -6,4 +6,5 @@ source https://nuget.org/api/v2 source https://ci.appveyor.com/nuget/fake nuget Fake.Runtime prerelease -nuget FSharp.Core prerelease \ No newline at end of file +nuget FSharp.Core prerelease +nuget Microsoft.NETCore.App \ No newline at end of file diff --git a/integrationtests/core-reference-fake-core-targets/before/.fake/reference_fake-targets.fsx/paket.dependencies b/integrationtests/core-reference-fake-core-targets/before/.fake/reference_fake-targets.fsx/paket.dependencies new file mode 100644 index 00000000000..eeb4793acbd --- /dev/null +++ b/integrationtests/core-reference-fake-core-targets/before/.fake/reference_fake-targets.fsx/paket.dependencies @@ -0,0 +1,7 @@ +storage: none +source https://nuget.org/api/v2 +source ..\..\../../../nuget/dotnetcore + +nuget Fake.Core.Target prerelease +nuget FSharp.Core prerelease +nuget Microsoft.NETCore.App diff --git a/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx b/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx index edfb195efbd..176907fc978 100644 --- a/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx +++ b/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx @@ -5,6 +5,7 @@ source ../../../nuget/dotnetcore nuget Fake.Core.Target prerelease nuget FSharp.Core prerelease +nuget Microsoft.NETCore.App -- Fake Dependencies -- *) printfn "before load" diff --git a/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx b/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx index 805a3cfe188..06fa518ae23 100644 --- a/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx +++ b/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx @@ -6,6 +6,7 @@ source ../../../nuget/dotnetcore nuget Fake.Runtime prerelease nuget FSharp.Core prerelease +nuget Microsoft.NETCore.App -- Fake Dependencies -- *) #load ".fake/reference_fake-runtime.fsx/intellisense.fsx" diff --git a/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx b/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx index cd51e19a5c3..074ab7bead4 100644 --- a/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx +++ b/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx @@ -6,6 +6,7 @@ source ../../../nuget/dotnetcore nuget Fake.Runtime prerelease nuget FSharp.Core prerelease +nuget Microsoft.NETCore.App -- Fake Dependencies -- *) open klajsdhgfasjkhd diff --git a/integrationtests/core-simple-runtime-error/before/runtime-error.fsx b/integrationtests/core-simple-runtime-error/before/runtime-error.fsx index bd27ebacea6..ce0a2251394 100644 --- a/integrationtests/core-simple-runtime-error/before/runtime-error.fsx +++ b/integrationtests/core-simple-runtime-error/before/runtime-error.fsx @@ -6,5 +6,6 @@ source ../../../nuget/dotnetcore nuget Fake.Runtime prerelease nuget FSharp.Core prerelease +nuget Microsoft.NETCore.App -- Fake Dependencies -- *) failwith "runtime error" \ No newline at end of file diff --git a/integrationtests/core-use-external-paket-dependencies/before/paket.dependencies b/integrationtests/core-use-external-paket-dependencies/before/paket.dependencies index 87df8c88535..27f384443c5 100644 --- a/integrationtests/core-use-external-paket-dependencies/before/paket.dependencies +++ b/integrationtests/core-use-external-paket-dependencies/before/paket.dependencies @@ -4,4 +4,5 @@ storage: none source ../../../nuget/dotnetcore nuget Fake.Runtime prerelease -nuget FSharp.Core prerelease \ No newline at end of file +nuget FSharp.Core prerelease +nuget Microsoft.NETCore.App \ No newline at end of file diff --git a/src/app/Fake.Runtime/CompileRunner.fs b/src/app/Fake.Runtime/CompileRunner.fs index f9d9ea86673..9caff46bf1b 100644 --- a/src/app/Fake.Runtime/CompileRunner.fs +++ b/src/app/Fake.Runtime/CompileRunner.fs @@ -95,7 +95,7 @@ let runUncached (context:FakeContext) : ResultCoreCacheInfo * Exception option = // see https://github.com/fsharp/FSharp.Compiler.Service/issues/755 // see https://github.com/fsharp/FSharp.Compiler.Service/issues/799 let options = - [co.AdditionalArguments; [ "--targetprofile:netcore"; "--nowin32manifest"; "-o"; wishPath; context.Config.ScriptFilePath ] ] + [co.AdditionalArguments; [ "--fullpaths"; "--simpleresolution"; "--targetprofile:netcore"; "--nowin32manifest"; "-o"; wishPath; context.Config.ScriptFilePath ] ] |> List.concat |> FsiOptions.ofArgs |> fun f -> @@ -109,7 +109,7 @@ let runUncached (context:FakeContext) : ResultCoreCacheInfo * Exception option = let formatErrors errors = System.String.Join("\n", errors |> Seq.map formatError) if context.Config.PrintDetails then - Trace.tracefn "FSC Args: %A" (args) + Trace.tracefn "FSC Args: [%s]" (String.Join("\";\n\"", args)) let fsc = FSharpChecker.Create() let errors, returnCode = fsc.Compile (args |> List.toArray) |> Async.RunSynchronously diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index 55b7245ec77..eec421bcb61 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -89,7 +89,7 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen let groupStr = match group with Some g -> g | None -> "Main" let groupName = Paket.Domain.GroupName (groupStr) #if DOTNETCORE - let framework = Paket.FrameworkIdentifier.DotNetStandard (Paket.DotNetStandardVersion.V2_0) + let framework = Paket.FrameworkIdentifier.DotNetCoreApp (Paket.DotNetCoreAppVersion.V2_0) #else let framework = Paket.FrameworkIdentifier.DotNetFramework (Paket.FrameworkVersion.V4_6) #endif @@ -184,6 +184,9 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen Runners.AssemblyInfo.Version = assembly.Name.Version.ToString() Runners.AssemblyInfo.Location = fullName } } |> Some with e -> (if printDetails then Trace.log <| sprintf "Could not load '%s': %O" fullName e); None) + // If we have multiple select one + |> Seq.groupBy (fun ass -> ass.IsReferenceAssembly, System.Reflection.AssemblyName(ass.Info.FullName).Name) + |> Seq.map (fun (_, group) -> group |> Seq.maxBy(fun ass -> ass.Info.Version)) |> Seq.toList //|> List.partition (fun c -> c.IsReferenceAssembly) // Restore or update immediatly, because or everything might be OK -> cached path. From 55b004221f327c66f2551e69dfdcddad7edbf55d Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 1 Oct 2017 23:27:30 +0200 Subject: [PATCH 19/25] move Fake.IO.FileSystem into Fake.IO namespace. --- build.fsx | 12 ++++-- src/app/Fake.Core.Process/Process.fs | 4 +- src/app/Fake.Core.Xml/Xml.fs | 3 +- .../AssemblyInfoFile.fs | 2 +- src/app/Fake.DotNet.Cli/Dotnet.fs | 6 +-- .../Fake.DotNet.FSFormatting/FSFormatting.fs | 6 +-- src/app/Fake.DotNet.MsBuild/MsBuild.fs | 4 +- src/app/Fake.DotNet.MsBuild/MsBuildLogger.fs | 4 +- src/app/Fake.DotNet.NuGet/Install.fs | 4 +- src/app/Fake.DotNet.NuGet/NuGet.fs | 4 +- src/app/Fake.DotNet.NuGet/NuGetVersion.fs | 2 +- src/app/Fake.DotNet.NuGet/Restore.fs | 4 +- src/app/Fake.DotNet.NuGet/Update.fs | 4 +- src/app/Fake.DotNet.Paket/Paket.fs | 4 +- src/app/Fake.DotNet.Paket/PaketTemplate.fs | 2 +- src/app/Fake.DotNet.Testing.MSpec/MSpec.fs | 4 +- src/app/Fake.DotNet.Testing.NUnit/Common.fs | 6 +-- src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs | 4 +- src/app/Fake.DotNet.Testing.NUnit/Parallel.fs | 2 +- .../Fake.DotNet.Testing.NUnit/Sequential.fs | 2 +- src/app/Fake.DotNet.Testing.NUnit/Xml.fs | 4 +- .../OpenCover.fs | 4 +- src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs | 4 +- src/app/Fake.IO.FileSystem/Directory.fs | 2 +- src/app/Fake.IO.FileSystem/DirectoryInfo.fs | 4 +- .../Fake.IO.FileSystem.fsproj | 2 +- src/app/Fake.IO.FileSystem/File.fs | 2 +- src/app/Fake.IO.FileSystem/FileInfo.fs | 6 +-- src/app/Fake.IO.FileSystem/FileSystemInfo.fs | 2 +- .../{Operators.fs => FileSystemOperators.fs} | 4 +- src/app/Fake.IO.FileSystem/Path.fs | 2 +- src/app/Fake.IO.FileSystem/Shell.fs | 6 +-- src/app/Fake.IO.FileSystem/Templates.fs | 2 +- src/app/Fake.IO.Zip/Zip.fs | 2 +- src/app/Fake.Testing.SonarQube/SonarQube.fs | 2 +- src/app/Fake.Tools.Git/CommandHelper.fs | 4 +- src/app/Fake.Tools.Git/CommitMessage.fs | 4 +- src/app/Fake.Tools.Git/Repository.fs | 2 +- .../NAntXmlTraceListener.fs | 2 +- src/app/Fake.Windows.Chocolatey/Chocolatey.fs | 4 +- src/app/FakeLib/FakeLib.fsproj | 2 +- src/app/FakeLib/FileHelper.fs | 25 ++++++------ src/app/FakeLib/FileSystemHelper.fs | 38 +++++++++---------- src/app/FakeLib/FileUtils.fs | 22 +++++------ src/app/FakeLib/StringHelper.fs | 22 +++++------ src/app/FakeLib/TemplateHelper.fs | 12 +++--- 46 files changed, 137 insertions(+), 131 deletions(-) rename src/app/Fake.IO.FileSystem/{Operators.fs => FileSystemOperators.fs} (83%) diff --git a/build.fsx b/build.fsx index 14d01b1f351..dcb0d89365e 100644 --- a/build.fsx +++ b/build.fsx @@ -26,16 +26,20 @@ open System.Reflection #endif // TODO Remove '#load' once released -#load "src/app/Fake.IO.FileSystem/File.fs" +#load "src/app/Fake.IO.FileSystem/Path.fs" +#load "src/app/Fake.IO.FileSystem/FileInfo.fs" +#load "src/app/Fake.IO.FileSystem/FileSystemOperators.fs" #load "src/app/Fake.IO.FileSystem/DirectoryInfo.fs" +#load "src/app/Fake.IO.FileSystem/File.fs" #load "src/app/Fake.IO.FileSystem/Directory.fs" +#load "src/app/Fake.IO.FileSystem/FileSystemInfo.fs" +#load "src/app/Fake.IO.FileSystem/Shell.fs" open System.IO open Fake.Core open Fake.Tools open Fake.IO -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators open Fake.Core.Globbing.Operators open Fake.Windows open Fake.DotNet @@ -139,7 +143,7 @@ Target.Create "RenameFSharpCompilerService" (fun _ -> for framework in ["netstandard1.6"; "net45"] do let dir = __SOURCE_DIRECTORY__ "packages"packDir"lib"framework let targetFile = dir "FAKE.FSharp.Compiler.Service.dll" - File.Delete targetFile + File.delete targetFile #if DOTNETCORE let reader = diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index 49d73b55eea..6f4d656880e 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -8,8 +8,8 @@ open System.IO open System.Threading open System.Text open System.Collections.Generic -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.GuardedAwaitObservable /// Kills the given process diff --git a/src/app/Fake.Core.Xml/Xml.fs b/src/app/Fake.Core.Xml/Xml.fs index 3fa5a3a2212..df727cb81c9 100644 --- a/src/app/Fake.Core.Xml/Xml.fs +++ b/src/app/Fake.Core.Xml/Xml.fs @@ -1,7 +1,6 @@ /// Contains functions to read and write XML files. module Fake.Core.Xml -open Fake.IO.FileSystem.Operators open Fake.Core.String open Fake.Core.BuildServer open Fake.Core.Process @@ -233,4 +232,4 @@ let XmlTransform (stylesheetUri : string) (fileName : string) = xsl.Load stylesheetUri XslTransform xsl doc |> save fileName -#endif \ No newline at end of file +#endif diff --git a/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs b/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs index 20be3dcf687..5cc2173745e 100644 --- a/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs +++ b/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs @@ -154,7 +154,7 @@ module AssemblyInfoFile = open Helper open Fake.Core open AssemblyInfo - open Fake.IO.FileSystem + open Fake.IO let private writeToFile outputFileName (lines : seq) = let fi = FileInfo.ofPath outputFileName diff --git a/src/app/Fake.DotNet.Cli/Dotnet.fs b/src/app/Fake.DotNet.Cli/Dotnet.fs index d909e4ba724..e1bf08f071c 100644 --- a/src/app/Fake.DotNet.Cli/Dotnet.fs +++ b/src/app/Fake.DotNet.Cli/Dotnet.fs @@ -9,8 +9,8 @@ module Fake.DotNet.Cli // Currently we #load this file in build.fsx #if NO_DOTNETCORE_BOOTSTRAP open Fake.Core -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators #else open Fake // Workaround until we have a release with the "new" API. @@ -696,4 +696,4 @@ let DotnetCompile setParams project = //let GlobalJsonSdk project = // let data = ReadFileAsString project // let info = JsonValue.Parse(data) -// info?sdk?version.AsString() \ No newline at end of file +// info?sdk?version.AsString() diff --git a/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs b/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs index 50dcfb6a7eb..5b6acd5c4c4 100644 --- a/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs +++ b/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs @@ -8,8 +8,8 @@ open Fake.Core open Fake.Core.String open Fake.Core.Globbing open Fake.Core.Process -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators /// Specifies the fsformatting executable let mutable toolPath = @@ -108,4 +108,4 @@ let CreateDocsForDlls (p:MetadataFormatArguments->MetadataFormatArguments) dllFi |> fun prefix -> sprintf "%s --dllfiles \"%s\"" prefix file |> run arguments.ToolPath - printfn "Successfully generated docs for DLL %s" file \ No newline at end of file + printfn "Successfully generated docs for DLL %s" file diff --git a/src/app/Fake.DotNet.MsBuild/MsBuild.fs b/src/app/Fake.DotNet.MsBuild/MsBuild.fs index 77cab3dd98d..7fdbf6e7b7b 100644 --- a/src/app/Fake.DotNet.MsBuild/MsBuild.fs +++ b/src/app/Fake.DotNet.MsBuild/MsBuild.fs @@ -5,8 +5,8 @@ open System open System.IO open System.Xml.Linq open Fake.Core -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.Globbing.Operators /// A type to represent MSBuild project files. diff --git a/src/app/Fake.DotNet.MsBuild/MsBuildLogger.fs b/src/app/Fake.DotNet.MsBuild/MsBuildLogger.fs index 4dcb702a641..5f0fb830918 100644 --- a/src/app/Fake.DotNet.MsBuild/MsBuildLogger.fs +++ b/src/app/Fake.DotNet.MsBuild/MsBuildLogger.fs @@ -1,7 +1,7 @@ /// Contains Logger implementations for MsBuild. module Fake.DotNet.MsBuildLogger -open Fake.IO.FileSystem +open Fake.IO #if !NO_MSBUILD_AVAILABLE open Microsoft.Build open Microsoft.Build.Framework @@ -62,4 +62,4 @@ type ErrorLogger() = if a.Succeeded then () else File.WriteAllText(ErrorLoggerFile, e)) -#endif \ No newline at end of file +#endif diff --git a/src/app/Fake.DotNet.NuGet/Install.fs b/src/app/Fake.DotNet.NuGet/Install.fs index 8b769f1c8d6..ecf62202f03 100644 --- a/src/app/Fake.DotNet.NuGet/Install.fs +++ b/src/app/Fake.DotNet.NuGet/Install.fs @@ -1,8 +1,8 @@ /// Contains tasks for installing NuGet packages using the [nuget.exe install command](http://docs.nuget.org/docs/reference/command-line-reference#Install_Command). module Fake.DotNet.NuGet.Install -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.BuildServer open Fake.Core.Process diff --git a/src/app/Fake.DotNet.NuGet/NuGet.fs b/src/app/Fake.DotNet.NuGet/NuGet.fs index a19aa81df63..f2dda583d00 100644 --- a/src/app/Fake.DotNet.NuGet/NuGet.fs +++ b/src/app/Fake.DotNet.NuGet/NuGet.fs @@ -3,8 +3,8 @@ /// There is also a tutorial about [nuget package creating](../create-nuget-package.html) available. module Fake.DotNet.NuGet.NuGet -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.BuildServer open Fake.Core.Process diff --git a/src/app/Fake.DotNet.NuGet/NuGetVersion.fs b/src/app/Fake.DotNet.NuGet/NuGetVersion.fs index 4b7674dec11..9be121554f0 100644 --- a/src/app/Fake.DotNet.NuGet/NuGetVersion.fs +++ b/src/app/Fake.DotNet.NuGet/NuGetVersion.fs @@ -1,6 +1,6 @@ module Fake.DotNet.NuGet.Version -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators open Fake.DotNet.NuGet.NuGet open Fake.Core.String open Fake.Core.BuildServer diff --git a/src/app/Fake.DotNet.NuGet/Restore.fs b/src/app/Fake.DotNet.NuGet/Restore.fs index f9c268aa8a4..8787e0d650c 100644 --- a/src/app/Fake.DotNet.NuGet/Restore.fs +++ b/src/app/Fake.DotNet.NuGet/Restore.fs @@ -2,8 +2,8 @@ /// There is also a tutorial about [nuget package restore](../nuget.html) available. module Fake.DotNet.NuGet.Restore -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.Globbing.Operators open Fake.Core.BuildServer diff --git a/src/app/Fake.DotNet.NuGet/Update.fs b/src/app/Fake.DotNet.NuGet/Update.fs index 477dbb7a7a5..7970b6ab8cc 100644 --- a/src/app/Fake.DotNet.NuGet/Update.fs +++ b/src/app/Fake.DotNet.NuGet/Update.fs @@ -1,8 +1,8 @@ /// Contains tasks for updating NuGet packages including assembly hint paths in the project files using the [nuget.exe update command](http://docs.nuget.org/docs/reference/command-line-reference#Update_Command). module Fake.DotNet.NuGet.Update -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.BuildServer open Fake.Core.Process diff --git a/src/app/Fake.DotNet.Paket/Paket.fs b/src/app/Fake.DotNet.Paket/Paket.fs index c4d681680f8..5c591211b7b 100644 --- a/src/app/Fake.DotNet.Paket/Paket.fs +++ b/src/app/Fake.DotNet.Paket/Paket.fs @@ -7,8 +7,8 @@ open System.Xml.Linq open System.Text.RegularExpressions open Fake.Core.Globbing open Fake.Core -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.Globbing.Operators /// Paket pack parameter type diff --git a/src/app/Fake.DotNet.Paket/PaketTemplate.fs b/src/app/Fake.DotNet.Paket/PaketTemplate.fs index 1a18f484343..aa9e8e3491f 100644 --- a/src/app/Fake.DotNet.Paket/PaketTemplate.fs +++ b/src/app/Fake.DotNet.Paket/PaketTemplate.fs @@ -5,7 +5,7 @@ module Fake.DotNet.PaketTemplate open System open System.Text open Fake.Core -open Fake.IO.FileSystem +open Fake.IO type PaketTemplateType = | File diff --git a/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs b/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs index a639a8e2ccb..a551f97f7b4 100644 --- a/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs +++ b/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs @@ -2,7 +2,7 @@ module Fake.DotNet.Testing.MSpec open Fake.Testing.Common -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.StringBuilder open Fake.Core.BuildServer @@ -36,7 +36,7 @@ type MSpecParams = /// MSpec default parameters - tries to locate mspec-clr4.exe in any subfolder. let MSpecDefaults = - { ToolPath = Fake.Core.Globbing.Tools.findToolInSubPath "mspec-clr4.exe" (Fake.IO.FileSystem.Shell.pwd() @@ "tools" @@ "MSpec") + { ToolPath = Fake.Core.Globbing.Tools.findToolInSubPath "mspec-clr4.exe" (Fake.IO.Shell.pwd() @@ "tools" @@ "MSpec") HtmlOutputDir = null XmlOutputPath = null WorkingDir = null diff --git a/src/app/Fake.DotNet.Testing.NUnit/Common.fs b/src/app/Fake.DotNet.Testing.NUnit/Common.fs index 3f1b2b46df1..fec5b35e5f5 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/Common.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/Common.fs @@ -2,7 +2,7 @@ module Fake.DotNet.Testing.NUnit.Common open Fake.Testing.Common -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.StringBuilder open Fake.Core.BuildServer @@ -136,11 +136,11 @@ let NUnitDefaults = let toolname = "nunit-console.exe" { IncludeCategory = "" ExcludeCategory = "" - ToolPath = Fake.Core.Globbing.Tools.findToolFolderInSubPath toolname (Fake.IO.FileSystem.Shell.pwd() @@ "tools" @@ "Nunit") + ToolPath = Fake.Core.Globbing.Tools.findToolFolderInSubPath toolname (Fake.IO.Shell.pwd() @@ "tools" @@ "Nunit") ToolName = toolname DontTestInNewThread = false StopOnError = false - OutputFile = Fake.IO.FileSystem.Shell.pwd() @@ "TestResult.xml" + OutputFile = Fake.IO.Shell.pwd() @@ "TestResult.xml" Out = "" ErrorOutputFile = "" WorkingDir = "" diff --git a/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs b/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs index 0d8c1c606d0..a20d2a5ee8f 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs @@ -2,8 +2,8 @@ module Fake.DotNet.Testing.NUnit3 open Fake.Testing.Common -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.StringBuilder open Fake.Core.Process diff --git a/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs b/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs index 0b026c1ada1..205722652d5 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs @@ -2,7 +2,7 @@ module Fake.DotNet.Testing.NUnit.Parallel open Fake.Testing.Common -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.BuildServer open Fake.Core.Process diff --git a/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs b/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs index 76c9a3edb27..e7154151ed0 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs @@ -2,7 +2,7 @@ module Fake.DotNet.Testing.NUnit.Sequential open Fake.Testing.Common -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.BuildServer open Fake.Core.Process diff --git a/src/app/Fake.DotNet.Testing.NUnit/Xml.fs b/src/app/Fake.DotNet.Testing.NUnit/Xml.fs index 01704546900..0194945155d 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/Xml.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/Xml.fs @@ -2,8 +2,8 @@ module Fake.DotNet.Testing.NUnit.Xml open Fake.Testing.Common -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.BuildServer open Fake.Core.Process diff --git a/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs b/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs index 8b6abfd35dc..40789df8177 100644 --- a/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs +++ b/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs @@ -8,8 +8,8 @@ module Fake.DotNet.Testing.OpenCover open Fake.Core.Process open Fake.Core.String open Fake.Core.StringBuilder - open Fake.IO.FileSystem - open Fake.IO.FileSystem.Operators + open Fake.IO + open Fake.IO.FileSystemOperators type RegisterType = | Manual diff --git a/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs b/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs index dd7c6326431..7fe229e00e8 100644 --- a/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs +++ b/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs @@ -2,7 +2,7 @@ module Fake.DotNet.Testing.XUnit2 open Fake.Testing.Common -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators open Fake.Core.String open Fake.Core.StringBuilder open Fake.Core.BuildServer @@ -183,7 +183,7 @@ let XUnit2Defaults = ExcludeTraits = [] ShadowCopy = true ErrorLevel = Error - ToolPath = Fake.Core.Globbing.Tools.findToolInSubPath "xunit.console.exe" (Fake.IO.FileSystem.Shell.pwd() @@ "tools" @@ "xunit.runner.console") + ToolPath = Fake.Core.Globbing.Tools.findToolInSubPath "xunit.console.exe" (Fake.IO.Shell.pwd() @@ "tools" @@ "xunit.runner.console") WorkingDir = None TimeOut = TimeSpan.FromMinutes 5. ForceTeamCity = false diff --git a/src/app/Fake.IO.FileSystem/Directory.fs b/src/app/Fake.IO.FileSystem/Directory.fs index 65a814ea9a4..40e91706acf 100644 --- a/src/app/Fake.IO.FileSystem/Directory.fs +++ b/src/app/Fake.IO.FileSystem/Directory.fs @@ -1,4 +1,4 @@ -namespace Fake.IO.FileSystem +namespace Fake.IO open System.IO diff --git a/src/app/Fake.IO.FileSystem/DirectoryInfo.fs b/src/app/Fake.IO.FileSystem/DirectoryInfo.fs index f39212d921a..2472385ea7f 100644 --- a/src/app/Fake.IO.FileSystem/DirectoryInfo.fs +++ b/src/app/Fake.IO.FileSystem/DirectoryInfo.fs @@ -1,7 +1,7 @@ -namespace Fake.IO.FileSystem +namespace Fake.IO open System.IO -open Fake.IO.FileSystem.Operators +open Fake.IO.FileSystemOperators module DirectoryInfo = /// Creates a DirectoryInfo for the given path. diff --git a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj index 65bdc7e900d..a7c69f4867c 100644 --- a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj +++ b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj @@ -12,7 +12,7 @@ - + diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index b44f03d2fb6..f33bddfa629 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -1,5 +1,5 @@ /// Contains helpers which allow to interact with the file system. -namespace Fake.IO.FileSystem +namespace Fake.IO open System.Text open System.IO diff --git a/src/app/Fake.IO.FileSystem/FileInfo.fs b/src/app/Fake.IO.FileSystem/FileInfo.fs index e79d79fba58..bd9179f6038 100644 --- a/src/app/Fake.IO.FileSystem/FileInfo.fs +++ b/src/app/Fake.IO.FileSystem/FileInfo.fs @@ -1,4 +1,4 @@ -namespace Fake.IO.FileSystem +namespace Fake.IO open System.IO @@ -7,10 +7,10 @@ module FileInfo = let inline ofPath path = new FileInfo(path) /// Active Pattern for determining file name. - let (|FileInfoFullName|) (f : FileInfo) = f.FullName + let (|FullName|) (f : FileInfo) = f.FullName /// Active Pattern for determining FileInfoNameSections. - let (|FileInfoNameSections|) (f : FileInfo) = (f.Name, f.Extension, f.FullName) + let (|NameSections|) (f : FileInfo) = (f.Name, f.Extension, f.FullName) /// Checks if the two files are byte-to-byte equal. let contentIsEqualTo (first : FileInfo) (second : FileInfo) = diff --git a/src/app/Fake.IO.FileSystem/FileSystemInfo.fs b/src/app/Fake.IO.FileSystem/FileSystemInfo.fs index 373c4653832..c9dc9b3c2cb 100644 --- a/src/app/Fake.IO.FileSystem/FileSystemInfo.fs +++ b/src/app/Fake.IO.FileSystem/FileSystemInfo.fs @@ -1,4 +1,4 @@ -namespace Fake.IO.FileSystem +namespace Fake.IO open System.IO diff --git a/src/app/Fake.IO.FileSystem/Operators.fs b/src/app/Fake.IO.FileSystem/FileSystemOperators.fs similarity index 83% rename from src/app/Fake.IO.FileSystem/Operators.fs rename to src/app/Fake.IO.FileSystem/FileSystemOperators.fs index d3c9b76fa8b..5828c6121ce 100644 --- a/src/app/Fake.IO.FileSystem/Operators.fs +++ b/src/app/Fake.IO.FileSystem/FileSystemOperators.fs @@ -1,8 +1,8 @@ -namespace Fake.IO.FileSystem +namespace Fake.IO open System.IO -module Operators = +module FileSystemOperators = /// Combines two path strings using Path.Combine let inline (@@) path1 path2 = Path.combineTrimEnd path1 path2 /// Combines two path strings using Path.Combine diff --git a/src/app/Fake.IO.FileSystem/Path.fs b/src/app/Fake.IO.FileSystem/Path.fs index 1777e398d99..0c10fd37be7 100644 --- a/src/app/Fake.IO.FileSystem/Path.fs +++ b/src/app/Fake.IO.FileSystem/Path.fs @@ -1,5 +1,5 @@ /// Contains helper function which allow to deal with files and directories. -module Fake.IO.FileSystem.Path +module Fake.IO.Path open Fake.Core open Fake.Core.String.Operators diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index 0d796eb3f72..c6b918031bf 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -1,10 +1,10 @@ /// Shell-like functions. Similar to [Ruby's FileUtils](http://www.ruby-doc.org/stdlib-2.0.0/libdoc/rake/rdoc/FileUtils.html). -namespace Fake.IO.FileSystem +namespace Fake.IO open System.IO open Fake.Core -open Fake.IO.FileSystem.Operators -open Fake.IO.FileSystem.FileSystemInfo +open Fake.IO.FileSystemOperators +open Fake.IO.FileSystemInfo module Shell = diff --git a/src/app/Fake.IO.FileSystem/Templates.fs b/src/app/Fake.IO.FileSystem/Templates.fs index da7654a9320..ee51b4a29c2 100644 --- a/src/app/Fake.IO.FileSystem/Templates.fs +++ b/src/app/Fake.IO.FileSystem/Templates.fs @@ -1,6 +1,6 @@ /// NOTE: Maybe this should be an extra module? /// Contains basic templating functions. Used in other helpers. -module Fake.IO.FileSystem.Templates +module Fake.IO.Templates /// Loads all templates (lazy - line by line!) let loadTemplates seq = Seq.map (fun fileName -> fileName, File.read fileName) seq diff --git a/src/app/Fake.IO.Zip/Zip.fs b/src/app/Fake.IO.Zip/Zip.fs index 54a8c70288a..be5e9acfde9 100644 --- a/src/app/Fake.IO.Zip/Zip.fs +++ b/src/app/Fake.IO.Zip/Zip.fs @@ -14,7 +14,7 @@ open ICSharpCode.SharpZipLib.Core #endif open System open Fake.Core -open Fake.IO.FileSystem +open Fake.IO /// The default zip level let DefaultZipLevel = 7 diff --git a/src/app/Fake.Testing.SonarQube/SonarQube.fs b/src/app/Fake.Testing.SonarQube/SonarQube.fs index cd9bfaccfaf..907dec3e500 100644 --- a/src/app/Fake.Testing.SonarQube/SonarQube.fs +++ b/src/app/Fake.Testing.SonarQube/SonarQube.fs @@ -5,7 +5,7 @@ module Fake.Testing.SonarQube open Fake.Core open Fake.Core.Globbing open Fake.Core.Process - open Fake.IO.FileSystem.Operators + open Fake.IO.FileSystemOperators /// [omit] /// The supported commands of SonarQube. It is called with Begin before compilation, and End after compilation. diff --git a/src/app/Fake.Tools.Git/CommandHelper.fs b/src/app/Fake.Tools.Git/CommandHelper.fs index 599157cdf4c..4c941678f82 100644 --- a/src/app/Fake.Tools.Git/CommandHelper.fs +++ b/src/app/Fake.Tools.Git/CommandHelper.fs @@ -12,8 +12,8 @@ open Fake.Core.Environment open Fake.Core.String open Fake.Core.String.Operators open Fake.Core.Process -open Fake.IO.FileSystem.Path -open Fake.IO.FileSystem +open Fake.IO.Path +open Fake.IO /// Specifies a global timeout for git.exe - default is *no timeout* diff --git a/src/app/Fake.Tools.Git/CommitMessage.fs b/src/app/Fake.Tools.Git/CommitMessage.fs index 92236c2fb5e..c5712c7dac4 100644 --- a/src/app/Fake.Tools.Git/CommitMessage.fs +++ b/src/app/Fake.Tools.Git/CommitMessage.fs @@ -2,8 +2,8 @@ module Fake.Tools.Git.CommitMessage open Fake.Tools.Git.CommandHelper -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open Fake.Core.String open System open System.Text diff --git a/src/app/Fake.Tools.Git/Repository.fs b/src/app/Fake.Tools.Git/Repository.fs index 0f4c757a62b..bdb3294ea37 100644 --- a/src/app/Fake.Tools.Git/Repository.fs +++ b/src/app/Fake.Tools.Git/Repository.fs @@ -5,7 +5,7 @@ module Fake.Tools.Git.Repository open Fake.Core open Fake.Tools.Git.CommandHelper open System.IO -open Fake.IO.FileSystem +open Fake.IO /// Clones a git repository. /// ## Parameters diff --git a/src/app/Fake.Tracing.NAntXml/NAntXmlTraceListener.fs b/src/app/Fake.Tracing.NAntXml/NAntXmlTraceListener.fs index b257371c885..428882571a3 100644 --- a/src/app/Fake.Tracing.NAntXml/NAntXmlTraceListener.fs +++ b/src/app/Fake.Tracing.NAntXml/NAntXmlTraceListener.fs @@ -1,7 +1,7 @@ /// This module contains function which allow to trace build output module Fake.Tracing.NAntXml open Fake.Core -open Fake.IO.FileSystem +open Fake.IO open Fake.Core.BuildServer open System diff --git a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs index 756f74b5747..943fd1d7bff 100644 --- a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs +++ b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs @@ -12,8 +12,8 @@ module Fake.Windows.Choco open Fake.Core.String open Fake.Core.StringBuilder open Fake.Core.Process - open Fake.IO.FileSystem - open Fake.IO.FileSystem.Operators + open Fake.IO + open Fake.IO.FileSystemOperators type ChocolateyInstallerType = | Zip diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 1018feca004..4aeb5e4d0e8 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -118,7 +118,7 @@ Fake.IO.FileSystem/FileInfo.fs - + Fake.IO.FileSystem/Operators.fs diff --git a/src/app/FakeLib/FileHelper.fs b/src/app/FakeLib/FileHelper.fs index 529d250859d..69070f4476d 100644 --- a/src/app/FakeLib/FileHelper.fs +++ b/src/app/FakeLib/FileHelper.fs @@ -7,7 +7,7 @@ open System.Text open System.Diagnostics /// Performs the given actions on all files and subdirectories -[] +[] let rec recursively dirF fileF (dir : DirectoryInfo) = dir |> subDirectories @@ -19,7 +19,7 @@ let rec recursively dirF fileF (dir : DirectoryInfo) = |> Seq.iter fileF /// Sets the directory readonly -[] +[] let setDirectoryReadOnly readOnly (dir : DirectoryInfo) = if dir.Exists then let isReadOnly = dir.Attributes &&& FileAttributes.ReadOnly = FileAttributes.ReadOnly @@ -27,7 +27,7 @@ let setDirectoryReadOnly readOnly (dir : DirectoryInfo) = if (not readOnly) && not isReadOnly then dir.Attributes <- dir.Attributes &&& (~~~FileAttributes.ReadOnly) /// Sets all files in the directory readonly. -[] +[] let SetDirReadOnly readOnly dir = recursively (setDirectoryReadOnly readOnly) (fun file -> file.IsReadOnly <- readOnly) dir @@ -42,7 +42,7 @@ let SetReadOnly readOnly (files : string seq) = |> setDirectoryReadOnly readOnly) /// Deletes a directory if it exists. -[] +[] let DeleteDir path = let dir = directoryInfo path if dir.Exists then @@ -55,7 +55,7 @@ let DeleteDir path = else logfn "%s does not exist." dir.FullName /// Creates a directory if it does not exist. -[] +[] let CreateDir path = let dir = directoryInfo path if not dir.Exists then @@ -64,7 +64,7 @@ let CreateDir path = else logfn "%s already exists." dir.FullName /// Creates a file if it does not exist. -[] +[] let CreateFile fileName = let file = fileInfo fileName if not file.Exists then @@ -74,7 +74,7 @@ let CreateFile fileName = else logfn "%s already exists." file.FullName /// Deletes a file if it exists. -[] +[] let DeleteFile fileName = let file = fileInfo fileName if file.Exists then @@ -83,7 +83,7 @@ let DeleteFile fileName = else logfn "%s does not exist." file.FullName /// Deletes the given files. -[] +[] let DeleteFiles files = Seq.iter DeleteFile files /// Active pattern which discriminates between files and directories. @@ -94,15 +94,17 @@ let (|File|Directory|) (fileSysInfo : FileSystemInfo) = | _ -> failwith "No file or directory given." /// Active Pattern for determining file extension. -[] +[] let (|EndsWith|_|) extension (file : string) = if file.EndsWith extension then Some() else None /// Active Pattern for determining file name. +[] let (|FileInfoFullName|) (f : FileInfo) = f.FullName /// Active Pattern for determining FileInfoNameSections. +[] let (|FileInfoNameSections|) (f : FileInfo) = (f.Name, f.Extension, f.FullName) /// Copies a single file to the target and overwrites the existing file. @@ -110,6 +112,7 @@ let (|FileInfoNameSections|) (f : FileInfo) = (f.Name, f.Extension, f.FullName) /// /// - `target` - The target directory or file. /// - `fileName` - The FileName. +[] let CopyFile target fileName = let fi = fileSystemInfo fileName match fi with @@ -391,7 +394,7 @@ let GeneratePatch lastReleaseDir patchDir srcFiles = GeneratePatchWithFindOldFileFunction lastReleaseDir patchDir srcFiles (fun a b -> b) /// Copies the file structure recursively. -[] +[] let rec copyRecursive (dir : DirectoryInfo) (outputDir : DirectoryInfo) overwrite = let files = dir @@ -472,7 +475,7 @@ let RegexReplaceInFilesWithEncoding pattern (replacement:string) encoding files /// ## Parameters /// /// - 'fileName' - Name of file from which the version is retrieved. The path can be relative. -[] +[] let FileVersion(fileName : string) = FullName fileName |> FileVersionInfo.GetVersionInfo diff --git a/src/app/FakeLib/FileSystemHelper.fs b/src/app/FakeLib/FileSystemHelper.fs index 6928fedbfb1..4028bbbae80 100644 --- a/src/app/FakeLib/FileSystemHelper.fs +++ b/src/app/FakeLib/FileSystemHelper.fs @@ -8,49 +8,49 @@ open System.IO open System.Runtime.InteropServices /// Creates a DirectoryInfo for the given path. -[] +[] let inline directoryInfo path = new DirectoryInfo(path) /// Creates a FileInfo for the given path. -[] +[] let inline fileInfo path = new FileInfo(path) /// Creates a FileInfo or a DirectoryInfo for the given path -[] +[] let inline fileSystemInfo path : FileSystemInfo = if Directory.Exists path then upcast directoryInfo path else upcast fileInfo path /// Converts a filename to it's full file system name. -[] +[] let inline FullName fileName = Path.GetFullPath fileName /// Gets the directory part of a filename. -[] +[] let inline DirectoryName fileName = Path.GetDirectoryName fileName /// Gets all subdirectories of a given directory. -[] +[] let inline subDirectories (dir : DirectoryInfo) = dir.GetDirectories() /// Gets all files in the directory. -[] +[] let inline filesInDir (dir : DirectoryInfo) = dir.GetFiles() /// Finds all the files in the directory matching the search pattern. -[] +[] let filesInDirMatching pattern (dir : DirectoryInfo) = if dir.Exists then dir.GetFiles pattern else [||] /// Finds all the files in the directory and in all subdirectories matching the search pattern. -[] +[] let filesInDirMatchingRecursive pattern (dir : DirectoryInfo) = if dir.Exists then dir.GetFiles(pattern, SearchOption.AllDirectories) else [||] /// Gets the first file in the directory matching the search pattern as an option value. -[] +[] let TryFindFirstMatchingFile pattern dir = dir |> directoryInfo @@ -60,7 +60,7 @@ let TryFindFirstMatchingFile pattern dir = else (Seq.head files).FullName |> Some /// Gets the first file in the directory matching the search pattern or throws an error if nothing was found. -[] +[] let FindFirstMatchingFile pattern dir = match TryFindFirstMatchingFile pattern dir with | Some x -> x @@ -73,16 +73,16 @@ let currentDirectory = Path.GetFullPath "." let fullAssemblyPath = System.Reflection.Assembly.GetAssembly(typeof).Location /// Checks if the file exists on disk. -[] +[] let fileExists fileName = File.Exists fileName /// Raises an exception if the file doesn't exist on disk. -[] +[] let checkFileExists fileName = if not <| fileExists fileName then new FileNotFoundException(sprintf "File %s does not exist." fileName) |> raise /// Checks if all given files exist. -[] +[] let allFilesExist files = Seq.forall fileExists files /// Normalizes a filename. @@ -91,27 +91,27 @@ let rec normalizeFileName (fileName : string) = .TrimEnd(Path.DirectorySeparatorChar).ToLower() /// Checks if dir1 is a subfolder of dir2. If dir1 equals dir2 the function returns also true. -[] +[] let rec isSubfolderOf (dir2 : DirectoryInfo) (dir1 : DirectoryInfo) = if normalizeFileName dir1.FullName = normalizeFileName dir2.FullName then true else if dir1.Parent = null then false else dir1.Parent |> isSubfolderOf dir2 /// Checks if the file is in a subfolder of the dir. -[] +[] let isInFolder (dir : DirectoryInfo) (fileInfo : FileInfo) = isSubfolderOf dir fileInfo.Directory /// Checks if the directory exists on disk. -[] +[] let directoryExists dir = Directory.Exists dir /// Ensure that directory chain exists. Create necessary directories if necessary. -[] +[] let inline ensureDirExists (dir : DirectoryInfo) = if not dir.Exists then dir.Create() /// Checks if the given directory exists. If not then this functions creates the directory. -[] +[] let inline ensureDirectory dir = directoryInfo dir |> ensureDirExists /// Detects whether the given path is a directory. diff --git a/src/app/FakeLib/FileUtils.fs b/src/app/FakeLib/FileUtils.fs index fbbc063f354..3675748c339 100644 --- a/src/app/FakeLib/FileUtils.fs +++ b/src/app/FakeLib/FileUtils.fs @@ -6,17 +6,17 @@ module Fake.FileUtils open System.IO /// Deletes a file if it exists -[] +[] let rm fileName = DeleteFile fileName /// Like "rm -rf" in a shell. Removes files recursively, ignoring nonexisting files -[] +[] let rm_rf f = if Directory.Exists f then DeleteDir f else DeleteFile f /// Creates a directory if it doesn't exist. -[] +[] let mkdir path = CreateDir path /// @@ -24,7 +24,7 @@ let mkdir path = CreateDir path /// /// The source /// The destination -[] +[] let cp_r src dest = if Directory.Exists src then CopyDir dest src allFiles else CopyFile dest src @@ -32,19 +32,19 @@ let cp_r src dest = /// Like "cp" in a shell. Copies a single file. /// The source /// The destination -[] +[] let cp src dest = CopyFile dest src /// Changes working directory -[] +[] let chdir path = Directory.SetCurrentDirectory path /// Changes working directory -[] +[] let cd path = chdir path /// Gets working directory -[] +[] let pwd = Directory.GetCurrentDirectory /// The stack of directories operated on by pushd and popd @@ -52,18 +52,18 @@ let pwd = Directory.GetCurrentDirectory let dirStack = new System.Collections.Generic.Stack() /// Store the current directory in the directory stack before changing to a new one -[] +[] let pushd path = dirStack.Push(pwd()) cd path /// Restore the previous directory stored in the stack -[] +[] let popd () = cd <| dirStack.Pop() /// Like "mv" in a shell. Moves/renames a file /// The source /// The destination -[] +[] let mv src dest = MoveFile src dest diff --git a/src/app/FakeLib/StringHelper.fs b/src/app/FakeLib/StringHelper.fs index e89861a2816..ce334dd830c 100644 --- a/src/app/FakeLib/StringHelper.fs +++ b/src/app/FakeLib/StringHelper.fs @@ -234,7 +234,7 @@ let liftString x = else Some x /// Reads a file line by line -[] +[] let ReadFile(file : string) = seq { use textReader = new StreamReader(file, encoding) @@ -243,13 +243,13 @@ let ReadFile(file : string) = } /// Reads the first line of a file. This can be helpful to read a password from file. -[] +[] let ReadLine(file : string) = use sr = new StreamReader(file, Encoding.Default) sr.ReadLine() /// Writes a file line by line -[] +[] let WriteToFile append fileName (lines : seq) = let fi = fileInfo fileName use writer = new StreamWriter(fileName, append && fi.Exists, encoding) @@ -269,18 +269,18 @@ let rec NormalizeVersion(version : string) = else version /// Writes a byte array to a file -[] +[] let WriteBytesToFile file bytes = File.WriteAllBytes(file, bytes) /// Writes a string to a file -[] +[] let WriteStringToFile append fileName (text : string) = let fi = fileInfo fileName use writer = new StreamWriter(fileName, append && fi.Exists, encoding) writer.Write text /// Replaces the file with the given string -[] +[] let ReplaceFile fileName text = let fi = fileInfo fileName if fi.Exists then @@ -292,19 +292,19 @@ let ReplaceFile fileName text = let Colon = ',' /// Writes a file line by line -[] +[] let WriteFile file lines = WriteToFile false file lines /// Appends all lines to a file line by line -[] +[] let AppendToFile file lines = WriteToFile true file lines /// Reads a file as one text -[] +[] let inline ReadFileAsString file = File.ReadAllText(file, encoding) /// Reads a file as one array of bytes -[] +[] let ReadFileAsBytes file = File.ReadAllBytes file /// Replaces any occurence of the currentDirectory with . @@ -316,7 +316,7 @@ let inline shortenCurrentDirectory value = replace currentDirectory "." value let inline (<*) prefix text = startsWith prefix text /// Replaces the text in the given file -[] +[] let ReplaceInFile replaceF fileName = fileName |> ReadFileAsString diff --git a/src/app/FakeLib/TemplateHelper.fs b/src/app/FakeLib/TemplateHelper.fs index efc5cf5fead..28c5b6e521f 100644 --- a/src/app/FakeLib/TemplateHelper.fs +++ b/src/app/FakeLib/TemplateHelper.fs @@ -1,15 +1,15 @@ [] /// Contains basic templating functions. Used in other helpers. -[] +[] module Fake.TemplateHelper #nowarn "44" -[] +[] /// Loads all templates (lazy - line by line!) let loadTemplates seq = Seq.map (fun fileName -> fileName, ReadFile fileName) seq -[] +[] /// Replaces a bunch of the keywords in all files (lazy - line by line!) let replaceKeywords replacements = Seq.map (fun (fileName, file) -> @@ -19,12 +19,12 @@ let replaceKeywords replacements = for (k : string, r : string) in replacements do sb <- sb.Replace(k, r) sb.ToString())) - -[] + +[] /// Saves all files (lazy - file by file!) let saveFiles = Seq.iter (fun (fileName, file) -> WriteFile fileName (Seq.toList file)) -[] +[] /// Replaces the templates with the given replacements let processTemplates replacements files = files From 8503683561bbb229f16c9beaf38496dccbf41db1 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 1 Oct 2017 23:36:32 +0200 Subject: [PATCH 20/25] fix compilation --- build.fsx | 3 --- src/test/Fake.Core.IntegrationTests/TestHelpers.fs | 4 ++-- src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs | 3 +-- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/build.fsx b/build.fsx index dcb0d89365e..acaef40021d 100644 --- a/build.fsx +++ b/build.fsx @@ -5,9 +5,6 @@ open System.Reflection -// Remove '#load' once released -#load "src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs" - #else // Load this before FakeLib, see https://github.com/fsharp/FSharp.Compiler.Service/issues/763 #r "packages/Mono.Cecil/lib/net40/Mono.Cecil.dll" diff --git a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs index 4b011195a42..14afc3e0990 100644 --- a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs +++ b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs @@ -2,8 +2,8 @@ module Fake.Core.IntegrationTests.TestHelpers open Fake.Core -open Fake.IO.FileSystem -open Fake.IO.FileSystem.Operators +open Fake.IO +open Fake.IO.FileSystemOperators open System open NUnit.Framework open System diff --git a/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs b/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs index 8201a4fe7f8..04f33cd0613 100644 --- a/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs +++ b/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs @@ -1,6 +1,5 @@ using System; using Fake; -using Fake.IO.FileSystem; using Machine.Specifications; using Test.FAKECore.FileHandling; using IOPath = System.IO.Path; @@ -54,4 +53,4 @@ public class when_including_files_based_on_pattern : BaseFunctions It does_not_exclude_files_not_in_pattern = () => IOFile.Exists(IOPath.Combine(DestinationDir, "Sub1/file1.nav")).ShouldBeTrue(); } } -} \ No newline at end of file +} From 4ec4bc03a32069e83e339d7338b9851c46b5fd82 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 1 Oct 2017 23:41:21 +0200 Subject: [PATCH 21/25] fix compilation --- src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs b/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs index 04f33cd0613..0b8f628780e 100644 --- a/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs +++ b/src/test/Test.FAKECore/FileHandling/CopyRecursiveSpecs.cs @@ -1,5 +1,6 @@ using System; using Fake; +using Fake.IO; using Machine.Specifications; using Test.FAKECore.FileHandling; using IOPath = System.IO.Path; From d4a2422c8f162cd3557131a46b10880b0e08c266 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Mon, 2 Oct 2017 01:15:43 +0200 Subject: [PATCH 22/25] fix some stuff --- RELEASE_NOTES.md | 3 +- build.fsx | 3 +- help/markdown/core-targets.md | 7 +- help/markdown/core.md | 6 + help/markdown/fake-fake5-modules.md | 2 +- help/templates/reference/module.cshtml | 2 +- help/templates/reference/namespaces.cshtml | 4 +- help/templates/reference/part-members.cshtml | 2 +- help/templates/reference/type.cshtml | 2 +- help/templates/template.cshtml | 59 +- paket.dependencies | 2 + paket.lock | 641 ++++++++++++++----- src/app/Fake.IO.FileSystem/File.fs | 2 +- src/app/Fake.IO.FileSystem/Path.fs | 10 +- src/app/Fake.IO.FileSystem/Shell.fs | 1 + 15 files changed, 539 insertions(+), 207 deletions(-) create mode 100644 help/markdown/core.md diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1eb4938d1da..a7dc6833dc5 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,7 @@ #### 5.0.0-beta004 - 30.09.2017 * BUILD: Remove hardcoded paths to FSharpTargets, replace with FSharp.Compiler.Tools - https://github.com/fsharp/FAKE/pull/1693 - +* ENHANCEMENT: Fake.IO.FileSystem Rework, functionality moved from `Fake.IO.FileSystem` to `Fake.IO` and APIs have been adapted to the new design guideline - https://github.com/fsharp/FAKE/pull/1670 +* PERFORMANCE: Fake should be a lot faster now - https://github.com/fsharp/FAKE/pull/1694 #### 5.0.0-beta003 - 26.09.2017 * ENHANCEMENT: Fix some migration warnings, Docs and bugs - https://github.com/fsharp/FAKE/pull/1686 diff --git a/build.fsx b/build.fsx index acaef40021d..60e772eecee 100644 --- a/build.fsx +++ b/build.fsx @@ -382,7 +382,7 @@ Target.Create "BootstrapTest" (fun _ -> let buildScript = "build.fsx" let testScript = "testbuild.fsx" // Check if we can build ourself with the new binaries. - let test clearCache script = + let test clearCache (script:string) = let clear () = // Will make sure the test call actually compiles the script. // Note: We cannot just clean .fake here as it might be locked by the currently executing code :) @@ -614,6 +614,7 @@ let appDir = srcDir"app" let netCoreProjs = !! "src/app/Fake.Core.*/*.fsproj" + ++ "src/app/Fake.Api.*/*.fsproj" ++ "src/app/Fake.DotNet.*/*.fsproj" ++ "src/app/Fake.Windows.*/*.fsproj" ++ "src/app/Fake.IO.*/*.fsproj" diff --git a/help/markdown/core-targets.md b/help/markdown/core-targets.md index 2090a2335d3..7a2174d7663 100644 --- a/help/markdown/core-targets.md +++ b/help/markdown/core-targets.md @@ -2,9 +2,11 @@ **Note: This documentation is for FAKE 5. The old documentation can be found [here](legacy-core-targets.html)! ** +[API-Reference](apidocs/fake-core-target.html), [Operators](apidocs/fake-core-targetoperators.html) + ## Listing targets -Not jet available in FAKE 5 +Not yet available in FAKE 5 > Note: This feature still makes sense, but a good CLI has not been found jet, please propose one. > For not you can run the target with name '--listTargets' or '-lt'. `fake run build.fsx -t '--list-Targets'` @@ -16,7 +18,6 @@ FAKE has a special param "target" which can be used to run specific targets in a // include Fake modules, see Fake modules section open Fake.Core - open Fake.Core.TargetOperators // *** Define Targets *** Target.Create "Clean" (fun _ -> @@ -31,6 +32,8 @@ FAKE has a special param "target" which can be used to run specific targets in a trace " --- Deploying app --- " ) + open Fake.Core.TargetOperators + // *** Define Dependencies *** "Clean" ==> "Build" diff --git a/help/markdown/core.md b/help/markdown/core.md new file mode 100644 index 00000000000..056cb8622e1 --- /dev/null +++ b/help/markdown/core.md @@ -0,0 +1,6 @@ +# Fake.Core + +This namespace bundles some "core" modules which are useful in most scenarios where FAKE is used. + +- [Targets](core-targets.html), [API-Reference](apidocs/fake-core-target.html), [Operators](apidocs/fake-core-targetoperators.html) +- To be continued... \ No newline at end of file diff --git a/help/markdown/fake-fake5-modules.md b/help/markdown/fake-fake5-modules.md index 0f4070d16d4..f6e9a76caaf 100644 --- a/help/markdown/fake-fake5-modules.md +++ b/help/markdown/fake-fake5-modules.md @@ -2,7 +2,7 @@ ## Requirements to modules -You can use any NuGet packages which are compatible with `netcore10`, for example all packages targeting `netstandard16` or lower. +You can use any NuGet packages which are compatible with `netcoreapp20`, for example all packages targeting `netstandard20` or lower. ## Declaring module dependencies diff --git a/help/templates/reference/module.cshtml b/help/templates/reference/module.cshtml index 252ba4f38ed..3875ff7b757 100644 --- a/help/templates/reference/module.cshtml +++ b/help/templates/reference/module.cshtml @@ -31,7 +31,7 @@ var nestTypes = (IEnumerable)Model.Module.NestedTypes; } -

@Model.Module.Name

+

@Model.Module.Name

@foreach (var sec in comment.Sections) { // XML comment for the type has multiple sections that can be labelled diff --git a/help/templates/reference/namespaces.cshtml b/help/templates/reference/namespaces.cshtml index 6f363acc572..574bfe27a9c 100644 --- a/help/templates/reference/namespaces.cshtml +++ b/help/templates/reference/namespaces.cshtml @@ -3,13 +3,13 @@ Title = "Namespaces - " + Properties["project-name"]; } -

@Model.Name

+

@Model.Name

@foreach (var ns in Model.Namespaces) { if (ns.Types.Length + ns.Modules.Length > 0) { -

@ns.Name Namespace

+

@ns.Name Namespace

@RenderPart("part-nested", new { Types = ns.Types, diff --git a/help/templates/reference/part-members.cshtml b/help/templates/reference/part-members.cshtml index 0e1af7899b5..195984f2374 100644 --- a/help/templates/reference/part-members.cshtml +++ b/help/templates/reference/part-members.cshtml @@ -1,5 +1,5 @@ @if (Enumerable.Count(Model.Members) > 0) { -

@Model.Header

+

@Model.Header

diff --git a/help/templates/reference/type.cshtml b/help/templates/reference/type.cshtml index 7723fb49e53..ff04a289248 100644 --- a/help/templates/reference/type.cshtml +++ b/help/templates/reference/type.cshtml @@ -27,7 +27,7 @@ }); } -

@Model.Type.Name

+

@Model.Type.Name

@foreach (var sec in comment.Sections) { // XML comment for the type has multiple sections that can be labelled diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index 4abfd9952fb..c14413cd199 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -71,61 +71,61 @@ Modules
diff --git a/paket.dependencies b/paket.dependencies index db90085ffb3..b812e1ed63e 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -79,6 +79,8 @@ group NetcoreBuild nuget FSharp.Core ~> 4.1.0 nuget System.AppContext prerelease nuget Paket.Core prerelease + nuget Microsoft.NETCore.App ~> 2.0 + //nuget Fake.Api.GitHub prerelease nuget Fake.Core.Target prerelease nuget Fake.Core.Globbing prerelease nuget Fake.Core.SemVer prerelease diff --git a/paket.lock b/paket.lock index fcc7fc172b4..04de5cbc501 100644 --- a/paket.lock +++ b/paket.lock @@ -218,7 +218,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.6) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.101.0) + Paket.Core (5.101) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -1725,9 +1725,9 @@ NUGET System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Timer (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.CSharp (4.4) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) Microsoft.DotNet.PlatformAbstractions (2.0) System.AppContext (>= 4.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1746,7 +1746,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.Win32.Registry (4.4) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.AccessControl (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Mono.Cecil (0.10.0-beta6) @@ -1762,47 +1762,47 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.AppContext (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Console (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Globalization.Calendars (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.IO (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.Compression (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.Compression.ZipFile (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.FileSystem (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Net.Http (>= 4.3.2) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Net.Sockets (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) Newtonsoft.Json (10.0.3) Microsoft.CSharp (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1812,7 +1812,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - Paket.Core (5.101.0) + Paket.Core (5.101) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) FSharp.Core - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) @@ -1933,13 +1933,13 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.FileVersionInfo (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2206,9 +2206,9 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.TypeExtensions (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) System.Resources.ResourceManager (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2278,16 +2278,16 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net46) (< net35)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2316,18 +2316,18 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.Cryptography.Primitives (4.3) System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2337,7 +2337,7 @@ NUGET System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.ProtectedData (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.Cryptography.X509Certificates (4.3.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2376,12 +2376,12 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.RegularExpressions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) System.Threading (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2772,17 +2772,166 @@ NUGET System.Threading.Thread (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Threading.Timer (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + Libuv (1.10) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.0.1) - restriction: >= netstandard1.0 + Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.CodeAnalysis.Common (2.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.CodeAnalysis.Analyzers (>= 1.1) - restriction: >= netstandard1.3 + System.AppContext (>= 4.3) - restriction: >= netstandard1.3 + System.Collections (>= 4.3) - restriction: >= netstandard1.3 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.3 + System.Collections.Immutable (>= 1.3.1) - restriction: >= netstandard1.3 + System.Console (>= 4.3) - restriction: >= netstandard1.3 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.3 + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: >= netstandard1.3 + System.Diagnostics.StackTrace (>= 4.3) - restriction: >= netstandard1.3 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.3 + System.Dynamic.Runtime (>= 4.3) - restriction: >= netstandard1.3 + System.Globalization (>= 4.3) - restriction: >= netstandard1.3 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.3 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.3 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.3 + System.Linq (>= 4.3) - restriction: >= netstandard1.3 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.3 + System.Reflection (>= 4.3) - restriction: >= netstandard1.3 + System.Reflection.Metadata (>= 1.4.2) - restriction: >= netstandard1.3 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.3 + System.Runtime (>= 4.3) - restriction: >= netstandard1.3 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.3 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.3 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.3 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.3 + System.Text.Encoding.CodePages (>= 4.3) - restriction: >= netstandard1.3 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.3 + System.Threading (>= 4.3) - restriction: >= netstandard1.3 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.3 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.3 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.3 + System.ValueTuple (>= 4.3) - restriction: >= netstandard1.3 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.3 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.3 + System.Xml.XmlDocument (>= 4.3) - restriction: >= netstandard1.3 + System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.3 + Microsoft.CodeAnalysis.CSharp (2.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.CodeAnalysis.Common (2.3.2) + Microsoft.CodeAnalysis.VisualBasic (2.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.CodeAnalysis.Common (>= 2.3.2) + Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (>= net461) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.DiaSymReader.Native (1.5) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + Microsoft.NETCore.App (2.0) + Libuv (>= 1.9.1) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.CSharp (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + Microsoft.CSharp (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + Microsoft.DiaSymReader.Native (>= 1.4.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + Microsoft.NETCore.DotNetHostPolicy (>= 1.0.5) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + Microsoft.NETCore.DotNetHostPolicy (>= 1.1.2) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + Microsoft.NETCore.DotNetHostPolicy (>= 2.0) - restriction: >= netcoreapp2.0 + Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + Microsoft.NETCore.Runtime.CoreCLR (>= 1.0.7) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + Microsoft.NETCore.Runtime.CoreCLR (>= 1.1.2) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + Microsoft.VisualBasic (>= 10.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + Microsoft.VisualBasic (>= 10.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + NETStandard.Library (>= 1.6) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + NETStandard.Library (>= 2.0) - restriction: >= netcoreapp2.0 + runtime.native.System.Security.Cryptography (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Buffers (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Buffers (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Collections.Immutable (>= 1.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Collections.Immutable (>= 1.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.ComponentModel (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.ComponentModel (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.ComponentModel.Annotations (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.ComponentModel.Annotations (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Diagnostics.DiagnosticSource (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Diagnostics.DiagnosticSource (>= 4.3.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Diagnostics.Process (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Diagnostics.Process (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Dynamic.Runtime (>= 4.0.11) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Dynamic.Runtime (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Globalization.Extensions (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Globalization.Extensions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.IO.FileSystem.Watcher (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.IO.MemoryMappedFiles (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.IO.MemoryMappedFiles (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.IO.UnmanagedMemoryStream (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.IO.UnmanagedMemoryStream (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Linq.Expressions (>= 4.1.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Linq.Expressions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Linq.Parallel (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Linq.Parallel (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Linq.Queryable (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Linq.Queryable (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Net.Http (>= 4.1.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Net.Http (>= 4.3.2) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Net.NameResolution (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Net.NameResolution (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Net.Requests (>= 4.0.11) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Net.Requests (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Net.Security (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Net.Security (>= 4.3.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Net.WebHeaderCollection (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Net.WebHeaderCollection (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Numerics.Vectors (>= 4.1.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Numerics.Vectors (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Reflection.DispatchProxy (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Reflection.DispatchProxy (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Reflection.Metadata (>= 1.3) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Reflection.Metadata (>= 1.4.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Reflection.TypeExtensions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Resources.Reader (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Resources.Reader (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Runtime.Loader (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Runtime.Loader (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Security.Cryptography.Encoding (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Security.Cryptography.Primitives (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Security.Cryptography.X509Certificates (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Threading.Tasks.Dataflow (>= 4.6) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Threading.Tasks.Dataflow (>= 4.7) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Threading.Tasks.Extensions (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Threading.Tasks.Parallel (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Threading.Thread (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Threading.Thread (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + System.Threading.ThreadPool (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) + Microsoft.NETCore.DotNetAppHost (2.0) - restriction: >= netcoreapp1.0 + Microsoft.NETCore.DotNetHostPolicy (2.0) - restriction: >= netcoreapp1.0 + Microsoft.NETCore.DotNetHostResolver (>= 2.0) + Microsoft.NETCore.DotNetHostResolver (2.0) - restriction: >= netcoreapp1.0 + Microsoft.NETCore.DotNetAppHost (>= 2.0) + Microsoft.NETCore.Jit (2.0) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (>= net461) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.2)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Runtime.CoreCLR (2.0) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Jit (>= 2.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + Microsoft.VisualBasic (10.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (4.4) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) @@ -2796,7 +2945,7 @@ NUGET System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (>= netstandard1.3) System.Security.Cryptography.Csp (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) - NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (>= netstandard1.6) + NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) @@ -2850,7 +2999,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.101.0) + Paket.Core (5.101) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -2865,21 +3014,38 @@ NUGET System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XmlDocument (>= 4.3) - restriction: >= netstandard1.6 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + runtime.native.System.Net.Security (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -2890,27 +3056,34 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.AppContext (4.3) System.Collections (>= 4.3) - restriction: >= dnxcore50 System.Resources.ResourceManager (>= 4.3) - restriction: >= dnxcore50 System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: >= dnxcore50 - System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -2921,7 +3094,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8)) + System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (>= monotouch) (>= netcoreapp1.0)) (&& (>= monotouch) (>= netcoreapp1.1)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< portable-net45+win8)) (&& (>= netcoreapp1.0) (>= xamarinios)) (&& (>= netcoreapp1.0) (>= xamarinmac)) (&& (>= netcoreapp1.0) (>= xamarintvos)) (&& (>= netcoreapp1.0) (>= xamarinwatchos)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8)) (&& (>= netcoreapp1.1) (>= xamarinios)) (&& (>= netcoreapp1.1) (>= xamarinmac)) (&& (>= netcoreapp1.1) (>= xamarintvos)) (&& (>= netcoreapp1.1) (>= xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8)) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Collections.NonGeneric (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -2938,8 +3111,11 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ComponentModel.Annotations (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8)) (&& (< monotouch) (< net45) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ComponentModel (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8)) (&& (< monotouch) (< net45) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.ComponentModel.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) System.ComponentModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -2960,17 +3136,17 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) @@ -2978,7 +3154,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Threading (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) - System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -2988,7 +3164,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Process (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Diagnostics.Process (4.3) - restriction: || (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3010,7 +3186,12 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.StackTrace (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Metadata (>= 1.4.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3024,11 +3205,11 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Dynamic.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Dynamic.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3043,29 +3224,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3081,7 +3262,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (>= net46) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3091,7 +3272,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3100,15 +3281,56 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Overlapped (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.IO.UnmanagedMemoryStream (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.UnmanagedMemoryStream (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3126,7 +3348,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Parallel (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Linq.Parallel (4.3) - restriction: || (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3137,7 +3359,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Queryable (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Linq.Queryable (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3146,7 +3368,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Http (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Net.Http (4.3.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3173,12 +3395,27 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Net.NameResolution (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Requests (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Net.Requests (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3192,81 +3429,122 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Sockets (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Security (4.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Security (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Claims (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Security.Principal (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Sockets (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Numerics.Vectors (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.DispatchProxy (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= uap10.0)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + System.Resources.Reader (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= uap10.0)) (>= net463) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3274,7 +3552,11 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Loader (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3288,10 +3570,18 @@ NUGET System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= monoandroid) (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monotouch) (>= netcoreapp1.0)) (&& (>= monotouch) (>= netcoreapp1.1)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (>= xamarinios)) (&& (>= netcoreapp1.0) (>= xamarinmac)) (&& (>= netcoreapp1.0) (>= xamarintvos)) (&& (>= netcoreapp1.0) (>= xamarinwatchos)) (&& (>= netcoreapp1.1) (>= xamarinios)) (&& (>= netcoreapp1.1) (>= xamarinmac)) (&& (>= netcoreapp1.1) (>= xamarintvos)) (&& (>= netcoreapp1.1) (>= xamarinwatchos)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) - System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Security.Claims (4.3) - restriction: || (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3306,8 +3596,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3318,7 +3607,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3332,7 +3621,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3345,7 +3634,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3359,7 +3648,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3369,7 +3658,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3395,34 +3684,58 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Principal (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= monoandroid) (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monotouch) (>= netcoreapp1.0)) (&& (>= monotouch) (>= netcoreapp1.1)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (>= xamarinios)) (&& (>= netcoreapp1.0) (>= xamarinmac)) (&& (>= netcoreapp1.0) (>= xamarintvos)) (&& (>= netcoreapp1.0) (>= xamarinwatchos)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (>= xamarinios)) (&& (>= netcoreapp1.1) (>= xamarinmac)) (&& (>= netcoreapp1.1) (>= xamarintvos)) (&& (>= netcoreapp1.1) (>= xamarinwatchos)) (>= netstandard2.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Claims (>= 4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< net461)) + System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.Encoding.CodePages (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Overlapped (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks.Dataflow (4.8) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (>= netstandard1.0) (< netstandard1.1)) (&& (>= netstandard1.1) (< netstandard2.0) (< xamarinmac)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (>= netstandard1.0) (< netstandard1.1)) (&& (>= netstandard1.1) (< netstandard2.0) (< xamarinmac)) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Threading.Tasks.Parallel (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks.Parallel (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3431,16 +3744,18 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Thread (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.Thread (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.ThreadPool (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.ReaderWriter (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.ValueTuple (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3456,7 +3771,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3469,7 +3784,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3490,7 +3805,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath.XDocument (4.3) - restriction: >= netstandard1.6 + System.Xml.XPath.XDocument (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index f33bddfa629..8be00a81412 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -46,7 +46,7 @@ module File = let deleteAll files = Seq.iter delete files /// Active Pattern for determining file extension. - let (|EndsWith|_|) extension (file : string) = + let (|EndsWith|_|) (extension : string) (file : string) = if file.EndsWith extension then Some() else None diff --git a/src/app/Fake.IO.FileSystem/Path.fs b/src/app/Fake.IO.FileSystem/Path.fs index 0c10fd37be7..f5aed7557cc 100644 --- a/src/app/Fake.IO.FileSystem/Path.fs +++ b/src/app/Fake.IO.FileSystem/Path.fs @@ -21,9 +21,13 @@ let isDirectory path = let isFile path = isDirectory path |> not /// Normalizes a filename. -let normalizeFileName (fileName : string) = - fileName.Replace("\\", Path.DirectorySeparatorChar.ToString()).Replace("/", Path.DirectorySeparatorChar.ToString()) - .TrimEnd(Path.DirectorySeparatorChar).ToLower() +let normalizeFileName (fileName : string) = + let dirsep = Path.DirectorySeparatorChar.ToString() + fileName + .Replace("\\", dirsep) + .Replace("/", dirsep) + .TrimEnd(Path.DirectorySeparatorChar) + .ToLower() /// Detects whether the given path does not contains invalid characters. diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index c6b918031bf..dd3c9e0558f 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -270,6 +270,7 @@ module Shell = let CopyRecursive dir outputDir overWrite = DirectoryInfo.copyRecursiveTo overWrite (DirectoryInfo.ofPath outputDir) (DirectoryInfo.ofPath dir) let inline CopyRecursiveTo overWrite outputDir dir = CopyRecursive dir outputDir overWrite + [] type CopyRecursiveMethod = | Overwrite | NoOverwrite From 2ca61ce2b6522a815b6735e37fe6a04ad76c6ac2 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Mon, 2 Oct 2017 01:41:33 +0200 Subject: [PATCH 23/25] doc. --- help/templates/template.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index c14413cd199..40c5cfc3544 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -89,7 +89,7 @@ IO
  • From 9b5b17558a13f49e56cbff906395ed944d4143db Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Mon, 2 Oct 2017 12:13:57 +0200 Subject: [PATCH 24/25] failure --- .../before/context-exists.fsx | 1 - .../before/paket.dependencies | 3 +- .../before/reference_fake-targets.fsx | 1 - .../before/reference_fake-runtime.fsx | 1 - .../before/fail-to-compile.fsx | 1 - .../before/runtime-error.fsx | 1 - paket.dependencies | 1 - paket.lock | 501 ++++-------------- src/app/Fake.IO.FileSystem/Directory.fs | 1 - src/app/Fake.IO.FileSystem/File.fs | 2 +- src/app/Fake.IO.FileSystem/Path.fs | 9 +- src/app/Fake.IO.FileSystem/Shell.fs | 2 +- src/app/Fake.Runtime/FakeRuntime.fs | 40 +- 13 files changed, 138 insertions(+), 426 deletions(-) diff --git a/integrationtests/core-context-exists/before/context-exists.fsx b/integrationtests/core-context-exists/before/context-exists.fsx index b06772e9ddb..cc4bc0bfebb 100644 --- a/integrationtests/core-context-exists/before/context-exists.fsx +++ b/integrationtests/core-context-exists/before/context-exists.fsx @@ -5,7 +5,6 @@ source ../../../nuget/dotnetcore //source https://ci.appveyor.com/nuget/paket nuget Fake.Core.Context prerelease -nuget Microsoft.NETCore.App -- Fake Dependencies -- *) #load ".fake/context-exists.fsx/intellisense.fsx" diff --git a/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies b/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies index 8e1b9e48c9c..3c787c5f828 100644 --- a/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies +++ b/integrationtests/core-implicit-dependencies-hello-world/before/paket.dependencies @@ -6,5 +6,4 @@ source https://nuget.org/api/v2 source https://ci.appveyor.com/nuget/fake nuget Fake.Runtime prerelease -nuget FSharp.Core prerelease -nuget Microsoft.NETCore.App \ No newline at end of file +nuget FSharp.Core prerelease \ No newline at end of file diff --git a/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx b/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx index 176907fc978..edfb195efbd 100644 --- a/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx +++ b/integrationtests/core-reference-fake-core-targets/before/reference_fake-targets.fsx @@ -5,7 +5,6 @@ source ../../../nuget/dotnetcore nuget Fake.Core.Target prerelease nuget FSharp.Core prerelease -nuget Microsoft.NETCore.App -- Fake Dependencies -- *) printfn "before load" diff --git a/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx b/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx index 06fa518ae23..805a3cfe188 100644 --- a/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx +++ b/integrationtests/core-reference-fake-runtime/before/reference_fake-runtime.fsx @@ -6,7 +6,6 @@ source ../../../nuget/dotnetcore nuget Fake.Runtime prerelease nuget FSharp.Core prerelease -nuget Microsoft.NETCore.App -- Fake Dependencies -- *) #load ".fake/reference_fake-runtime.fsx/intellisense.fsx" diff --git a/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx b/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx index 074ab7bead4..cd51e19a5c3 100644 --- a/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx +++ b/integrationtests/core-simple-failed-to-compile/before/fail-to-compile.fsx @@ -6,7 +6,6 @@ source ../../../nuget/dotnetcore nuget Fake.Runtime prerelease nuget FSharp.Core prerelease -nuget Microsoft.NETCore.App -- Fake Dependencies -- *) open klajsdhgfasjkhd diff --git a/integrationtests/core-simple-runtime-error/before/runtime-error.fsx b/integrationtests/core-simple-runtime-error/before/runtime-error.fsx index ce0a2251394..bd27ebacea6 100644 --- a/integrationtests/core-simple-runtime-error/before/runtime-error.fsx +++ b/integrationtests/core-simple-runtime-error/before/runtime-error.fsx @@ -6,6 +6,5 @@ source ../../../nuget/dotnetcore nuget Fake.Runtime prerelease nuget FSharp.Core prerelease -nuget Microsoft.NETCore.App -- Fake Dependencies -- *) failwith "runtime error" \ No newline at end of file diff --git a/paket.dependencies b/paket.dependencies index b812e1ed63e..e9985eace11 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -79,7 +79,6 @@ group NetcoreBuild nuget FSharp.Core ~> 4.1.0 nuget System.AppContext prerelease nuget Paket.Core prerelease - nuget Microsoft.NETCore.App ~> 2.0 //nuget Fake.Api.GitHub prerelease nuget Fake.Core.Target prerelease nuget Fake.Core.Globbing prerelease diff --git a/paket.lock b/paket.lock index 04de5cbc501..bba536bf21f 100644 --- a/paket.lock +++ b/paket.lock @@ -2772,166 +2772,17 @@ NUGET System.Threading.Thread (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Threading.Timer (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - Libuv (1.10) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.0.1) - restriction: >= netstandard1.0 - Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.CodeAnalysis.Common (2.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.CodeAnalysis.Analyzers (>= 1.1) - restriction: >= netstandard1.3 - System.AppContext (>= 4.3) - restriction: >= netstandard1.3 - System.Collections (>= 4.3) - restriction: >= netstandard1.3 - System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.3 - System.Collections.Immutable (>= 1.3.1) - restriction: >= netstandard1.3 - System.Console (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.StackTrace (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.3 - System.Dynamic.Runtime (>= 4.3) - restriction: >= netstandard1.3 - System.Globalization (>= 4.3) - restriction: >= netstandard1.3 - System.IO.Compression (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Linq (>= 4.3) - restriction: >= netstandard1.3 - System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.3 - System.Reflection (>= 4.3) - restriction: >= netstandard1.3 - System.Reflection.Metadata (>= 1.4.2) - restriction: >= netstandard1.3 - System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.3 - System.Text.Encoding.CodePages (>= 4.3) - restriction: >= netstandard1.3 - System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.3 - System.Threading (>= 4.3) - restriction: >= netstandard1.3 - System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.3 - System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.3 - System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.3 - System.ValueTuple (>= 4.3) - restriction: >= netstandard1.3 - System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.3 - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.3 - System.Xml.XmlDocument (>= 4.3) - restriction: >= netstandard1.3 - System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.3 - Microsoft.CodeAnalysis.CSharp (2.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.CodeAnalysis.Common (2.3.2) - Microsoft.CodeAnalysis.VisualBasic (2.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.CodeAnalysis.Common (>= 2.3.2) - Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) + Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.DiaSymReader.Native (1.5) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - Microsoft.NETCore.App (2.0) - Libuv (>= 1.9.1) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.CSharp (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - Microsoft.CSharp (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - Microsoft.DiaSymReader.Native (>= 1.4.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - Microsoft.NETCore.DotNetHostPolicy (>= 1.0.5) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - Microsoft.NETCore.DotNetHostPolicy (>= 1.1.2) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - Microsoft.NETCore.DotNetHostPolicy (>= 2.0) - restriction: >= netcoreapp2.0 - Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - Microsoft.NETCore.Runtime.CoreCLR (>= 1.0.7) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - Microsoft.NETCore.Runtime.CoreCLR (>= 1.1.2) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - Microsoft.VisualBasic (>= 10.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - Microsoft.VisualBasic (>= 10.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - NETStandard.Library (>= 1.6) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - NETStandard.Library (>= 2.0) - restriction: >= netcoreapp2.0 - runtime.native.System.Security.Cryptography (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Buffers (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Buffers (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Collections.Immutable (>= 1.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Collections.Immutable (>= 1.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.ComponentModel (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.ComponentModel (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.ComponentModel.Annotations (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.ComponentModel.Annotations (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Diagnostics.DiagnosticSource (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Diagnostics.DiagnosticSource (>= 4.3.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Diagnostics.Process (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Diagnostics.Process (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Dynamic.Runtime (>= 4.0.11) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Dynamic.Runtime (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Globalization.Extensions (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Globalization.Extensions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.IO.FileSystem.Watcher (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.IO.MemoryMappedFiles (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.IO.MemoryMappedFiles (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.IO.UnmanagedMemoryStream (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.IO.UnmanagedMemoryStream (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Linq.Expressions (>= 4.1.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Linq.Expressions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Linq.Parallel (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Linq.Parallel (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Linq.Queryable (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Linq.Queryable (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Net.Http (>= 4.1.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Net.Http (>= 4.3.2) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Net.NameResolution (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Net.NameResolution (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Net.Requests (>= 4.0.11) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Net.Requests (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Net.Security (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Net.Security (>= 4.3.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Net.WebHeaderCollection (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Net.WebHeaderCollection (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Numerics.Vectors (>= 4.1.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Numerics.Vectors (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Reflection.DispatchProxy (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Reflection.DispatchProxy (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Reflection.Metadata (>= 1.3) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Reflection.Metadata (>= 1.4.1) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Reflection.TypeExtensions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Resources.Reader (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Resources.Reader (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Runtime.Loader (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Runtime.Loader (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Security.Cryptography.Encoding (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Security.Cryptography.Primitives (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Security.Cryptography.X509Certificates (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Threading.Tasks.Dataflow (>= 4.6) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Threading.Tasks.Dataflow (>= 4.7) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Threading.Tasks.Extensions (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Threading.Tasks.Parallel (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Threading.Thread (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Threading.Thread (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - System.Threading.ThreadPool (>= 4.3) - restriction: && (>= netcoreapp1.1) (< netcoreapp2.0) - Microsoft.NETCore.DotNetAppHost (2.0) - restriction: >= netcoreapp1.0 - Microsoft.NETCore.DotNetHostPolicy (2.0) - restriction: >= netcoreapp1.0 - Microsoft.NETCore.DotNetHostResolver (>= 2.0) - Microsoft.NETCore.DotNetHostResolver (2.0) - restriction: >= netcoreapp1.0 - Microsoft.NETCore.DotNetAppHost (>= 2.0) - Microsoft.NETCore.Jit (2.0) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (>= net461) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.2)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.NETCore.Runtime.CoreCLR (2.0) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Jit (>= 2.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) - Microsoft.VisualBasic (10.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac)) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (>= net461) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (4.4) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) @@ -2945,7 +2796,7 @@ NUGET System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (>= netstandard1.3) System.Security.Cryptography.Csp (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) - NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (>= netstandard1.6) + NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) @@ -3014,38 +2865,21 @@ NUGET System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XmlDocument (>= 4.3) - restriction: >= netstandard1.6 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Security (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (>= 4.3.2) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -3056,34 +2890,27 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (4.3.2) - restriction: && (>= netcoreapp1.0) (< netcoreapp1.1) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.AppContext (4.3) System.Collections (>= 4.3) - restriction: >= dnxcore50 System.Resources.ResourceManager (>= 4.3) - restriction: >= dnxcore50 System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: >= dnxcore50 - System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3094,7 +2921,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (>= monotouch) (>= netcoreapp1.0)) (&& (>= monotouch) (>= netcoreapp1.1)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< portable-net45+win8)) (&& (>= netcoreapp1.0) (>= xamarinios)) (&& (>= netcoreapp1.0) (>= xamarinmac)) (&& (>= netcoreapp1.0) (>= xamarintvos)) (&& (>= netcoreapp1.0) (>= xamarinwatchos)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8)) (&& (>= netcoreapp1.1) (>= xamarinios)) (&& (>= netcoreapp1.1) (>= xamarinmac)) (&& (>= netcoreapp1.1) (>= xamarintvos)) (&& (>= netcoreapp1.1) (>= xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8)) + System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8)) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Collections.NonGeneric (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3111,11 +2938,8 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.ComponentModel.Annotations (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8)) (&& (< monotouch) (< net45) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.ComponentModel (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8)) (&& (< monotouch) (< net45) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.ComponentModel.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) System.ComponentModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3136,17 +2960,17 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) @@ -3154,7 +2978,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Threading (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) - System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) + System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net46) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3164,7 +2988,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Process (4.3) - restriction: || (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) + System.Diagnostics.Process (4.3) - restriction: || (>= net46) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3186,12 +3010,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.StackTrace (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Metadata (>= 1.4.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3205,11 +3024,11 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Dynamic.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) + System.Dynamic.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3224,29 +3043,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3262,7 +3081,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (>= net46) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3272,7 +3091,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3281,56 +3100,15 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Overlapped (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.IO.UnmanagedMemoryStream (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.UnmanagedMemoryStream (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3348,7 +3126,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Parallel (4.3) - restriction: || (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) + System.Linq.Parallel (4.3) - restriction: || (>= net46) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3359,7 +3137,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Queryable (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Linq.Queryable (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3368,7 +3146,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Http (4.3.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Net.Http (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3395,27 +3173,12 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.NameResolution (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal.Windows (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Requests (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Net.Requests (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3429,122 +3192,81 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Security (4.3.2) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Net.Security (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Claims (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Security.Principal (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Sockets (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Numerics.Vectors (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.DispatchProxy (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) + System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) + System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard2.0)) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.Reader (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= uap10.0)) (>= net463) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= uap10.0)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3552,11 +3274,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Loader (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3570,18 +3288,10 @@ NUGET System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= monoandroid) (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monotouch) (>= netcoreapp1.0)) (&& (>= monotouch) (>= netcoreapp1.1)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (>= xamarinios)) (&& (>= netcoreapp1.0) (>= xamarinmac)) (&& (>= netcoreapp1.0) (>= xamarintvos)) (&& (>= netcoreapp1.0) (>= xamarinwatchos)) (&& (>= netcoreapp1.1) (>= xamarinios)) (&& (>= netcoreapp1.1) (>= xamarinmac)) (&& (>= netcoreapp1.1) (>= xamarintvos)) (&& (>= netcoreapp1.1) (>= xamarinwatchos)) (>= netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) - System.Security.Claims (4.3) - restriction: || (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) - System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3596,7 +3306,8 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3607,7 +3318,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3621,7 +3332,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3634,7 +3345,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3648,7 +3359,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3658,7 +3369,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3684,58 +3395,34 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= monoandroid) (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monotouch) (>= netcoreapp1.0)) (&& (>= monotouch) (>= netcoreapp1.1)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (>= xamarinios)) (&& (>= netcoreapp1.0) (>= xamarinmac)) (&& (>= netcoreapp1.0) (>= xamarintvos)) (&& (>= netcoreapp1.0) (>= xamarinwatchos)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (>= xamarinios)) (&& (>= netcoreapp1.1) (>= xamarinmac)) (&& (>= netcoreapp1.1) (>= xamarintvos)) (&& (>= netcoreapp1.1) (>= xamarinwatchos)) (>= netstandard2.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Claims (>= 4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< net461)) - System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.CodePages (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Threading.Overlapped (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) - System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netcoreapp1.0)) (&& (>= net463) (>= netcoreapp1.1)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.1)) (&& (>= 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)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks.Dataflow (4.8) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (>= netstandard1.0) (< netstandard1.1)) (&& (>= netstandard1.1) (< netstandard2.0) (< xamarinmac)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (>= netstandard1.0) (< netstandard1.1)) (&& (>= netstandard1.1) (< netstandard2.0) (< xamarinmac)) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Threading.Tasks.Parallel (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Threading.Tasks.Parallel (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3744,18 +3431,16 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Thread (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Threading.Thread (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Threading.ThreadPool (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.ValueTuple (4.4) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.ReaderWriter (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.0)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Xml.ReaderWriter (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3771,7 +3456,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3784,7 +3469,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) + System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3805,7 +3490,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath.XDocument (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp1.1)) (&& (>= netcoreapp1.1) (< netcoreapp2.0)) (>= netstandard1.6) + System.Xml.XPath.XDocument (4.3) - restriction: >= netstandard1.6 System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) diff --git a/src/app/Fake.IO.FileSystem/Directory.fs b/src/app/Fake.IO.FileSystem/Directory.fs index 40e91706acf..4ef8ceda65e 100644 --- a/src/app/Fake.IO.FileSystem/Directory.fs +++ b/src/app/Fake.IO.FileSystem/Directory.fs @@ -9,7 +9,6 @@ module Directory = dir |> DirectoryInfo.ofPath |> DirectoryInfo.ensure /// Creates a directory if it does not exist. - [] let create = ensure /// Gets the first file in the directory matching the search pattern as an option value. diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index 8be00a81412..13d749afb0c 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -7,7 +7,7 @@ open Fake.Core open Operators module FileFilter = - let allFiles file = true + let allFiles _ = true module File = /// Checks if the file exists on disk. diff --git a/src/app/Fake.IO.FileSystem/Path.fs b/src/app/Fake.IO.FileSystem/Path.fs index f5aed7557cc..2a7950518c1 100644 --- a/src/app/Fake.IO.FileSystem/Path.fs +++ b/src/app/Fake.IO.FileSystem/Path.fs @@ -22,11 +22,12 @@ let isFile path = isDirectory path |> not /// Normalizes a filename. let normalizeFileName (fileName : string) = - let dirsep = Path.DirectorySeparatorChar.ToString() + let dirsepChar = Path.DirectorySeparatorChar + let dirsep = dirsepChar.ToString() fileName .Replace("\\", dirsep) .Replace("/", dirsep) - .TrimEnd(Path.DirectorySeparatorChar) + .TrimEnd(dirsepChar) .ToLower() @@ -57,7 +58,9 @@ let hasExtension extension fileName = System.String.Equals(Path.GetExtension fil let getDirectory path = Path.GetDirectoryName path /// The directory separator string. On most systems / or \ -let directorySeparator = Path.DirectorySeparatorChar.ToString() +let directorySeparator = + let dirsepChar = Path.DirectorySeparatorChar + dirsepChar.ToString() let getFullName p = Path.GetFullPath p diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index dd3c9e0558f..fe67fdf36a8 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -247,7 +247,7 @@ module Shell = /// - `patchDir` - The target directory. /// - `srcFiles` - The source files. let GeneratePatch lastReleaseDir patchDir srcFiles = - GeneratePatchWithFindOldFileFunction lastReleaseDir patchDir srcFiles (fun a b -> b) + GeneratePatchWithFindOldFileFunction lastReleaseDir patchDir srcFiles (fun _ b -> b) /// Checks if the directory exists let TestDir path = diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index eec421bcb61..8e19369a020 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -96,9 +96,16 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen let lockFilePath = Paket.DependenciesFile.FindLockfile paketDependencies.DependenciesFile let parent s = Path.GetDirectoryName s let comb name s = Path.Combine(s, name) - //let paketDependenciesHashFile = cacheDir |> comb "paket.depedencies.sha1" - //let saveDependenciesHash () = - // File.WriteAllText (paketDependenciesHashFile, HashGeneration.getStringHash (File.ReadAllText paketDependencies.DependenciesFile)) + +#if DOTNETCORE + let getCurrentSDKReferenceFiles() = + let netstandard = System.Runtime.Loader.AssemblyLoadContext.Default.LoadFromAssemblyName(System.Reflection.AssemblyName("netstandard")) + let sdkDir = Path.GetDirectoryName netstandard.Location + Directory.GetFiles(sdkDir, "*.dll") + |> Seq.toList +#endif + + let restoreOrUpdate () = if printDetails then Trace.log "Restoring with paket..." @@ -175,9 +182,34 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen |> Seq.toList runtimeAssemblies @ refAssemblies) |> Seq.filter (fun (_, r) -> r.Extension = ".dll" || r.Extension = ".exe" ) - |> Seq.choose (fun (isReferenceAssembly, fi) -> + |> Seq.map (fun (isRef, fi) -> false, isRef, fi) +#if DOTNETCORE + // Append sdk files as references in order to properly compile, for runtime we can default to the default-load-context. + |> Seq.append (getCurrentSDKReferenceFiles() |> Seq.map (fun file -> true, true, FileInfo file)) +#endif + |> Seq.choose (fun (isSdk, isReferenceAssembly, fi) -> let fullName = fi.FullName try let assembly = Mono.Cecil.AssemblyDefinition.ReadAssembly fullName + let takeAssembly = + if not isSdk then true + else + let isFramework = + assembly.CustomAttributes |> Seq.exists (fun attr -> + if attr.AttributeType.Name = "AssemblyMetadataAttribute" then + let arg1 = attr.ConstructorArguments.[0] + let value1 = arg1.Value.ToString() + let arg2 = attr.ConstructorArguments.[1] + let value2 = arg2.Value.ToString() + value1 = ".NETFrameworkAssembly" || + (value1 = "Serviceable" && value2 = "True") + + else false) + isFramework + if not takeAssembly then + if printDetails then Trace.log <| sprintf "Not taking '%s'" fullName + None + else + { IsReferenceAssembly = isReferenceAssembly Info = { Runners.AssemblyInfo.FullName = assembly.Name.FullName From eb1bda9e6432011870d98f5290ed54ec1a5d3287 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Mon, 2 Oct 2017 13:29:30 +0200 Subject: [PATCH 25/25] use NETStandard.Library for netstandard20 references. --- src/app/Fake.Runtime/CompileRunner.fs | 2 +- src/app/Fake.Runtime/FakeRuntime.fs | 57 ++++++++++++++++----------- 2 files changed, 34 insertions(+), 25 deletions(-) diff --git a/src/app/Fake.Runtime/CompileRunner.fs b/src/app/Fake.Runtime/CompileRunner.fs index 9caff46bf1b..402621043c4 100644 --- a/src/app/Fake.Runtime/CompileRunner.fs +++ b/src/app/Fake.Runtime/CompileRunner.fs @@ -95,7 +95,7 @@ let runUncached (context:FakeContext) : ResultCoreCacheInfo * Exception option = // see https://github.com/fsharp/FSharp.Compiler.Service/issues/755 // see https://github.com/fsharp/FSharp.Compiler.Service/issues/799 let options = - [co.AdditionalArguments; [ "--fullpaths"; "--simpleresolution"; "--targetprofile:netcore"; "--nowin32manifest"; "-o"; wishPath; context.Config.ScriptFilePath ] ] + [co.AdditionalArguments; [ "--fullpaths"; "--simpleresolution"; "--targetprofile:netstandard"; "--nowin32manifest"; "-o"; wishPath; context.Config.ScriptFilePath ] ] |> List.concat |> FsiOptions.ofArgs |> fun f -> diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index 8e19369a020..f87223129c5 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -89,7 +89,8 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen let groupStr = match group with Some g -> g | None -> "Main" let groupName = Paket.Domain.GroupName (groupStr) #if DOTNETCORE - let framework = Paket.FrameworkIdentifier.DotNetCoreApp (Paket.DotNetCoreAppVersion.V2_0) + //let framework = Paket.FrameworkIdentifier.DotNetCoreApp (Paket.DotNetCoreAppVersion.V2_0) + let framework = Paket.FrameworkIdentifier.DotNetStandard (Paket.DotNetStandardVersion.V2_0) #else let framework = Paket.FrameworkIdentifier.DotNetFramework (Paket.FrameworkVersion.V4_6) #endif @@ -99,8 +100,36 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen #if DOTNETCORE let getCurrentSDKReferenceFiles() = - let netstandard = System.Runtime.Loader.AssemblyLoadContext.Default.LoadFromAssemblyName(System.Reflection.AssemblyName("netstandard")) - let sdkDir = Path.GetDirectoryName netstandard.Location + // We need use "real" reference assemblies as using the currently running runtime assemlies doesn't work: + // see https://github.com/fsharp/FAKE/pull/1695 + + // Therefore we download the reference assemblies (the NETStandard.Library package) + // and add them in addition to what we have resolved, + // we use the sources in the paket.dependencies to give the user a chance to overwrite. + + // Note: This package/version needs to updated together with our "framework" variable below and needs to + // be compatible with the runtime we are currently running on. + let rootDir = Directory.GetCurrentDirectory() + let sources = paketDependencies.GetSources().[groupName] + let packageName = Domain.PackageName("NETStandard.Library") + let version = SemVer.Parse("2.0.0") + let versions = + Paket.NuGet.GetVersions false None rootDir (PackageResolver.GetPackageVersionsParameters.ofParams sources groupName packageName) + |> Async.RunSynchronously + |> dict + let source = + match versions.TryGetValue(version) with + | true, v when v.Length > 0 -> v |> Seq.head + | _ -> failwithf "Could not find package '%A' with version '%A' in any package source of group '%A', but paket needs this package for compilation" packageName version groupName + + let _, extractedFolder = + Paket.NuGet.DownloadAndExtractPackage + (None, rootDir, false, PackagesFolderGroupConfig.NoPackagesFolder, + source, [], Paket.Constants.MainDependencyGroup, + packageName, version, false, false, false, false) + |> Async.RunSynchronously + //let netstandard = System.Runtime.Loader.AssemblyLoadContext.Default.LoadFromAssemblyName(System.Reflection.AssemblyName("netstandard")) + let sdkDir = Path.Combine(extractedFolder, "build", "netstandard2.0", "ref") Directory.GetFiles(sdkDir, "*.dll") |> Seq.toList #endif @@ -190,26 +219,6 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen |> Seq.choose (fun (isSdk, isReferenceAssembly, fi) -> let fullName = fi.FullName try let assembly = Mono.Cecil.AssemblyDefinition.ReadAssembly fullName - let takeAssembly = - if not isSdk then true - else - let isFramework = - assembly.CustomAttributes |> Seq.exists (fun attr -> - if attr.AttributeType.Name = "AssemblyMetadataAttribute" then - let arg1 = attr.ConstructorArguments.[0] - let value1 = arg1.Value.ToString() - let arg2 = attr.ConstructorArguments.[1] - let value2 = arg2.Value.ToString() - value1 = ".NETFrameworkAssembly" || - (value1 = "Serviceable" && value2 = "True") - - else false) - isFramework - if not takeAssembly then - if printDetails then Trace.log <| sprintf "Not taking '%s'" fullName - None - else - { IsReferenceAssembly = isReferenceAssembly Info = { Runners.AssemblyInfo.FullName = assembly.Name.FullName @@ -220,7 +229,7 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen |> Seq.groupBy (fun ass -> ass.IsReferenceAssembly, System.Reflection.AssemblyName(ass.Info.FullName).Name) |> Seq.map (fun (_, group) -> group |> Seq.maxBy(fun ass -> ass.Info.Version)) |> Seq.toList - //|> List.partition (fun c -> c.IsReferenceAssembly) + // Restore or update immediatly, because or everything might be OK -> cached path. let knownAssemblies = restoreOrUpdate() if printDetails then
  • @Model.TableHeaderDescription