From 81bd478a55d67355193e1f27b0ae2a8aca5a23cf Mon Sep 17 00:00:00 2001 From: Lutando Ngqakaza Date: Wed, 17 Jul 2019 11:04:12 +0200 Subject: [PATCH 01/19] added Organization field to SonarQubeParams --- src/app/Fake.Testing.SonarQube/SonarQube.fs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/app/Fake.Testing.SonarQube/SonarQube.fs b/src/app/Fake.Testing.SonarQube/SonarQube.fs index feaf07f7b9f..4435466677d 100644 --- a/src/app/Fake.Testing.SonarQube/SonarQube.fs +++ b/src/app/Fake.Testing.SonarQube/SonarQube.fs @@ -14,6 +14,8 @@ module Fake.Testing.SonarQube type SonarQubeParams = { /// FileName of the SonarQube runner exe. ToolsPath : string + /// Organization which owns the SonarQube project + Organization : string option /// Key to identify the SonarQube project Key : string /// Name of the project @@ -29,6 +31,7 @@ module Fake.Testing.SonarQube /// SonarQube default parameters - tries to locate MSBuild.SonarQube.exe in any subfolder. let SonarQubeDefaults = { ToolsPath = Tools.findToolInSubPath "MSBuild.SonarQube.Runner.exe" (Directory.GetCurrentDirectory() @@ "tools" @@ "SonarQube") + Organization = None Key = null Name = null Version = "1.0" @@ -40,6 +43,10 @@ module Fake.Testing.SonarQube let private SonarQubeCall (call: SonarQubeCall) (parameters : SonarQubeParams) = let sonarPath = parameters.ToolsPath let setArgs = parameters.Settings |> List.fold (fun acc x -> acc + "/d:" + x + " ") "" + let orgArgs = + match parameters.Organization with + | Some (organization) -> (" /o:" + organization) + | None -> "" let cfgArgs = match parameters.Config with @@ -48,7 +55,7 @@ module Fake.Testing.SonarQube let args = match call with - | Begin -> "begin /k:\"" + parameters.Key + "\" /n:\"" + parameters.Name + "\" /v:\"" + parameters.Version + "\" " + setArgs + cfgArgs + | Begin -> "begin /k:\"" + parameters.Key + "\" /n:\"" + parameters.Name + "\" /v:\"" + parameters.Version + "\" " + setArgs + cfgArgs + orgArgs | End -> "end " + setArgs + cfgArgs let result = From 2ff27b91a247cb407d495ec41bd62e5d79677247 Mon Sep 17 00:00:00 2001 From: "sean.amos" Date: Thu, 1 Aug 2019 13:48:37 +0200 Subject: [PATCH 02/19] Invert the logic for finding paket. If it finds "paket.exe", use that, else try search for "paket" --- src/app/Fake.DotNet.Paket/Paket.fs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/Fake.DotNet.Paket/Paket.fs b/src/app/Fake.DotNet.Paket/Paket.fs index 02e0ec45af9..0148630691d 100644 --- a/src/app/Fake.DotNet.Paket/Paket.fs +++ b/src/app/Fake.DotNet.Paket/Paket.fs @@ -33,11 +33,11 @@ type PaketPackParams = PinProjectReferences : bool } let private findPaketExecutable () = - match Tools.tryFindToolFolderInSubPath "paket" with + match Tools.tryFindToolFolderInSubPath "paket.exe" with | Some folder -> - folder @@ "paket" + folder @@ "paket.exe" | None -> - (Tools.findToolFolderInSubPath "paket.exe" (Directory.GetCurrentDirectory() @@ ".paket")) @@ "paket.exe" + (Tools.findToolFolderInSubPath "paket" (Directory.GetCurrentDirectory() @@ ".paket")) @@ "paket" /// Paket pack default parameters let PaketPackDefaults() : PaketPackParams = From 3cd8ddc7d0e72b65e076ebd40bf410bc5c7138eb Mon Sep 17 00:00:00 2001 From: Lutando Ngqakaza Date: Wed, 7 Aug 2019 16:08:16 +0200 Subject: [PATCH 03/19] still a work in progress --- src/app/Fake.Testing.SonarQube/SonarQube.fs | 46 ++++++++++++++++----- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/src/app/Fake.Testing.SonarQube/SonarQube.fs b/src/app/Fake.Testing.SonarQube/SonarQube.fs index 4435466677d..832af0fcf61 100644 --- a/src/app/Fake.Testing.SonarQube/SonarQube.fs +++ b/src/app/Fake.Testing.SonarQube/SonarQube.fs @@ -42,22 +42,46 @@ module Fake.Testing.SonarQube /// Execute the external msbuild runner of SonarQube. Parameters are given to the command line tool as required. let private SonarQubeCall (call: SonarQubeCall) (parameters : SonarQubeParams) = let sonarPath = parameters.ToolsPath - let setArgs = parameters.Settings |> List.fold (fun acc x -> acc + "/d:" + x + " ") "" - let orgArgs = + let arg flag param = + let augmentedParam = @""+ param + @"" + (sprintf "/%s:%s" flag augmentedParam).Trim() + + let organisationArgument = match parameters.Organization with - | Some (organization) -> (" /o:" + organization) - | None -> "" - - let cfgArgs = + | None -> None + | Some (organization) -> Some (arg "o" organization) + + let configurationArgument = match parameters.Config with - | Some(x) -> (" /s:"+x) - | None -> "" + | None -> None + | Some x -> Some ( arg "s" x ) + + let beginInitialArguments = + Arguments.Empty + |> Arguments.appendIf true "begin" + |> Arguments.appendIf true (arg "k" parameters.Key) + |> Arguments.appendIf true (arg "n" parameters.Name) + |> Arguments.appendIf true (arg "v" parameters.Version) + |> Arguments.appendIf (organisationArgument.IsNone = false) organisationArgument.Value + |> Arguments.appendIf (configurationArgument.IsNone = false) configurationArgument.Value + + let beginCall = + parameters.Settings + |> List.fold (fun arguments x -> arguments |> Arguments.appendIf true (sprintf "/d:%s" x) ) beginInitialArguments + + let endInitialArguments = + Arguments.Empty + |> Arguments.appendIf true "end" + |> Arguments.appendIf (configurationArgument.IsNone = false) configurationArgument.Value + + let endCall = + parameters.Settings + |> List.fold (fun arguments x -> arguments |> Arguments.appendIf true (sprintf "/d:%s" x) ) endInitialArguments let args = match call with - | Begin -> "begin /k:\"" + parameters.Key + "\" /n:\"" + parameters.Name + "\" /v:\"" + parameters.Version + "\" " + setArgs + cfgArgs + orgArgs - | End -> "end " + setArgs + cfgArgs - + | Begin -> beginCall.ToStartInfo + | End -> endCall.ToStartInfo let result = Process.execSimple ((fun info -> { info with From 6547bdc3533c311ea8248e01c55fa668a34ea765 Mon Sep 17 00:00:00 2001 From: Stefan Cullmann Date: Sat, 17 Aug 2019 16:15:36 +0200 Subject: [PATCH 04/19] added: File.tryGetVersion addresses #2378 --- src/app/Fake.IO.FileSystem/File.fs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index d7a71cdef17..dde4eab16b2 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -62,6 +62,15 @@ module File = Path.getFullName fileName |> System.Diagnostics.FileVersionInfo.GetVersionInfo |> fun x -> x.FileVersion.ToString() + + /// Trys to get the version a file. + /// ## Parameters + /// + /// - 'fileName' - Name of file from which the version is retrieved. The path can be relative. + let tryGetVersion (fileName : string) = + Path.getFullName fileName + |> System.Diagnostics.FileVersionInfo.GetVersionInfo + |> fun x -> if (isNull x.FileVersion) then None else Some (x.FileVersion.ToString()) /// Creates a file if it does not exist. let create fileName = From b37b4247f542116ffd5345ded29bba8da149517b Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Wed, 21 Aug 2019 19:54:08 +0200 Subject: [PATCH 05/19] Fix workaround for https://github.com/fsprojects/Paket/issues/2785 Fixes https://github.com/fsharp/FAKE/issues/2382 --- src/app/Fake.Runtime/FakeRuntime.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index 28abbe427b9..29f1769a79a 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -256,7 +256,7 @@ let paketCachingProvider (config:FakeConfig) cacheDir (paketApi:Paket.Dependenci paketApi.UpdateGroup(groupStr, false, false, false, false, false, Paket.SemVerUpdateMode.NoRestriction, false) |> ignore with - | e when e.Message.Contains "Did you restore groups" -> + | e when e.Message.Contains "Did you restore group" -> // See https://github.com/fsharp/FAKE/issues/1672 // and https://github.com/fsprojects/Paket/issues/2785 // We do a restore anyway. From 417672b17cbdcf627f48176f9a3311b0cac54c4d Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Wed, 21 Aug 2019 19:56:03 +0200 Subject: [PATCH 06/19] release notes --- RELEASE_NOTES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f873bcbd1f8..f0683a9f4b9 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,9 @@ # Release Notes +## 5.16.1-alpha - tbd + +* BUGFIX: Fix https://github.com/fsharp/FAKE/issues/2382 + ## 5.16.0 - 2019-08-17 * LEGACY: Remove `Fake.Deploy` from repository and NuGet package, see https://github.com/fsharp/FAKE/issues/1820 From 01e12ea6ce5edf15f07ecf13f38387626a9aaa62 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 12:38:12 +0200 Subject: [PATCH 07/19] Fix runtime assembly loading to consider - empty public key tokens (fixes https://github.com/fsharp/FAKE/issues/2381) - empty versions --- src/app/Fake.Runtime/CoreCache.fs | 49 ++++++++++++------- src/app/Fake.netcore/Fake.netcore.fsproj | 7 ++- .../Properties/launchSettings.json | 4 +- src/test/Fake.Core.UnitTests/Fake.Runtime.fs | 30 ++++++++++++ 4 files changed, 69 insertions(+), 21 deletions(-) diff --git a/src/app/Fake.Runtime/CoreCache.fs b/src/app/Fake.Runtime/CoreCache.fs index 76ffa0b0287..94e2f70e276 100644 --- a/src/app/Fake.Runtime/CoreCache.fs +++ b/src/app/Fake.Runtime/CoreCache.fs @@ -166,7 +166,10 @@ module internal Cache = |> Seq.filter (fun r -> not (System.IO.Path.GetFileName(r).ToLowerInvariant().StartsWith("api-ms"))) |> Seq.choose (fun r -> try Some (AssemblyInfo.ofLocation r) - with e -> None) + with e -> + if context.Config.VerboseLevel.PrintVerbose then + Trace.tracefn "Error while trying to load assembly metainformation: %O" e + None) |> Seq.toList let newAdditionalArgs = { fsiOpts with @@ -218,6 +221,29 @@ let loadAssembly (loadContext:AssemblyLoadContext) (logLevel:Trace.VerboseLevel) if logLevel.PrintVerbose then tracefn "Unable to find assembly %A. (Error: %O)" assemInfo ex None +let findInAssemblyList (name:AssemblyName) (runtimeDependencies:AssemblyInfo list) = + let strName = name.FullName + match runtimeDependencies |> List.tryFind (fun r -> r.FullName = strName) with + | Some a -> + Some (true, a) + | _ -> + let token = name.GetPublicKeyToken() + // When null or empty accept what we have + // See https://github.com/fsharp/FAKE/issues/2381 + let emptyToken = isNull token || token.Length = 0 + let emptyVersion = isNull name.Version + match runtimeDependencies + |> Seq.map (fun r -> AssemblyName(r.FullName), r) + |> Seq.tryFind (fun (n, _) -> + n.Name = name.Name && + (emptyToken || + n.GetPublicKeyToken() = token)) with + | Some (otherName, info) -> + // Then the version matches or is null and the public token is null we still accept this as perfect match + Some ((emptyToken && (emptyVersion || otherName.Version = name.Version)), info) + | _ -> + None + let findAndLoadInRuntimeDeps (loadContext:AssemblyLoadContext) (name:AssemblyName) (logLevel:Trace.VerboseLevel) (runtimeDependencies:AssemblyInfo list) = let strName = name.FullName if logLevel.PrintVerbose then tracefn "Trying to resolve: %s" strName @@ -265,22 +291,11 @@ let findAndLoadInRuntimeDeps (loadContext:AssemblyLoadContext) (name:AssemblyNam | None -> #endif if logLevel.PrintVerbose then tracefn "Could not find assembly in the default load-context: %s" strName - match runtimeDependencies |> List.tryFind (fun r -> r.FullName = strName) with - | Some a -> - true, loadAssembly loadContext logLevel a - | _ -> - let token = name.GetPublicKeyToken() - match runtimeDependencies - |> Seq.map (fun r -> AssemblyName(r.FullName), r) - |> Seq.tryFind (fun (n, _) -> - n.Name = name.Name && - (isNull token || // When null accept what we have. - n.GetPublicKeyToken() = token)) with - | Some (otherName, info) -> - // Then the version matches and the public token is null we still accept this as perfect match - (isNull token && otherName.Version = name.Version), loadAssembly loadContext logLevel info - | _ -> - false, None + match runtimeDependencies |> findInAssemblyList name with + | Some (perfectMatch, a) -> + perfectMatch, loadAssembly loadContext logLevel a + | None -> + false, None match result with | Some (location, a) -> if logLevel.PrintVerbose then diff --git a/src/app/Fake.netcore/Fake.netcore.fsproj b/src/app/Fake.netcore/Fake.netcore.fsproj index a33d0127e4e..af77ef6baee 100644 --- a/src/app/Fake.netcore/Fake.netcore.fsproj +++ b/src/app/Fake.netcore/Fake.netcore.fsproj @@ -1,5 +1,5 @@ - + netcoreapp2.1 $(DefineConstants);CORE_CLR;DOTNETCORE;EXPLICIT_DEPENDENCIES;NETSTANDARD;NETSTANDARD1_6 @@ -10,6 +10,9 @@ Exe win7-x86;win7-x64;osx.10.11-x64;linux-x64 + + $(DefineConstants);DEBUG;TRACE + $(DefineConstants);RELEASE diff --git a/src/app/Fake.netcore/Properties/launchSettings.json b/src/app/Fake.netcore/Properties/launchSettings.json index 86c45cfcb94..a4f4b8226d8 100644 --- a/src/app/Fake.netcore/Properties/launchSettings.json +++ b/src/app/Fake.netcore/Properties/launchSettings.json @@ -2,8 +2,8 @@ "profiles": { "Fake.netcore": { "commandName": "Project", - "commandLineArgs": "run --fsiargs \"--debug:portable --optimize-\" reference_fake-targets.fsx -- --write-info testfile.json", - "workingDirectory": "C:\\proj\\FAKE\\integrationtests\\core-reference-fake-core-targets\\temp" + "commandLineArgs": "-vv build", + "workingDirectory": "C:\\proj\\FAKE" } } } \ No newline at end of file diff --git a/src/test/Fake.Core.UnitTests/Fake.Runtime.fs b/src/test/Fake.Core.UnitTests/Fake.Runtime.fs index af210328f77..db8a864b984 100644 --- a/src/test/Fake.Core.UnitTests/Fake.Runtime.fs +++ b/src/test/Fake.Core.UnitTests/Fake.Runtime.fs @@ -1,10 +1,12 @@ module Fake.RuntimeTests open System.IO +open System.Reflection open Fake.Runtime open Fake.IO.FileSystemOperators open Expecto open Fake.IO +open Fake.Runtime.Runners [] let tests = @@ -15,6 +17,34 @@ let tests = Path.readPathFromCache "build.fsx" "scriptpath:///build.fsx" |> Flip.Expect.equal "should detect script itself" (Path.GetFullPath "build.fsx") + testCase "CoreCache.findInAssemblyList works with null token" <| fun _ -> + let toFind = AssemblyName "Microsoft.ServiceFabric.Client.Http, Culture=neutral, PublicKeyToken=null" + let res = { FullName = "Microsoft.ServiceFabric.Client.Http, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"; Version = "3.0.0.0"; Location = "C:\\invalid.dll" } + let available : AssemblyInfo list = [ res ] + let result = CoreCache.findInAssemblyList toFind available + Expect.equal result (Some (true, res)) "Expected to retrieve Microsoft.ServiceFabric.Common" + + testCase "CoreCache.findInAssemblyList works with different version" <| fun _ -> + let toFind = AssemblyName "Microsoft.ServiceFabric.Client.Http, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + let res = { FullName = "Microsoft.ServiceFabric.Client.Http, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"; Version = "3.0.0.0"; Location = "C:\\invalid.dll" } + let available : AssemblyInfo list = [ res ] + let result = CoreCache.findInAssemblyList toFind available + Expect.equal result (Some (false, res)) "Expected to retrieve Microsoft.ServiceFabric.Common" + + testCase "CoreCache.findInAssemblyList doesn't return different token" <| fun _ -> + let toFind = AssemblyName "Microsoft.ServiceFabric.Client.Http, Version=2.0.0.0, Culture=neutral, PublicKeyToken=41bf3856ad364e35" + let res = { FullName = "Microsoft.ServiceFabric.Client.Http, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"; Version = "3.0.0.0"; Location = "C:\\invalid.dll" } + let available : AssemblyInfo list = [ res ] + let result = CoreCache.findInAssemblyList toFind available + Expect.equal result None "Expected to not retrieve Microsoft.ServiceFabric.Common" + + testCase "CoreCache.findInAssemblyList doesn't return different name" <| fun _ -> + let toFind = AssemblyName "Microsoft.ServiceFabric.Client, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + let res = { FullName = "Microsoft.ServiceFabric.Client.Http, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"; Version = "3.0.0.0"; Location = "C:\\invalid.dll" } + let available : AssemblyInfo list = [ res ] + let result = CoreCache.findInAssemblyList toFind available + Expect.equal result None "Expected to not retrieve Microsoft.ServiceFabric.Common" + testCase "Test that cache helpers work for nuget cache" <| fun _ -> let nugetLib = Paket.Constants.UserNuGetPackagesFolder "MyLib" "lib" "mylib.dll" Path.fixPathForCache "build.fsx" nugetLib From 37bd392ccc4db1e70184ac03d11296caef988233 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 12:41:10 +0200 Subject: [PATCH 08/19] fix tests && release notes --- RELEASE_NOTES.md | 1 + src/test/Fake.DotNet.Cli.IntegrationTests/TemplateTests.fs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f0683a9f4b9..7c5668394e7 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -3,6 +3,7 @@ ## 5.16.1-alpha - tbd * BUGFIX: Fix https://github.com/fsharp/FAKE/issues/2382 +* BUGFIX: Fix https://github.com/fsharp/FAKE/issues/2381 ## 5.16.0 - 2019-08-17 diff --git a/src/test/Fake.DotNet.Cli.IntegrationTests/TemplateTests.fs b/src/test/Fake.DotNet.Cli.IntegrationTests/TemplateTests.fs index 720844a4f8c..4b18d3a6f02 100644 --- a/src/test/Fake.DotNet.Cli.IntegrationTests/TemplateTests.fs +++ b/src/test/Fake.DotNet.Cli.IntegrationTests/TemplateTests.fs @@ -60,7 +60,7 @@ let timeout = (System.TimeSpan.FromMinutes 10.) let runTemplate rootDir kind dependencies dsl = Directory.ensure rootDir try - DotNet.exec (dtntWorkDir rootDir >> redirect()) "new" (sprintf "%s --allow-scripts yes --version 5.3.0 --bootstrap %s --dependencies %s --dsl %s" templateName (string kind) (string dependencies) (string dsl)) + DotNet.exec (dtntWorkDir rootDir >> redirect()) "new" (sprintf "%s --allow-scripts yes --version 5.16.0 --bootstrap %s --dependencies %s --dsl %s" templateName (string kind) (string dependencies) (string dsl)) |> shouldSucceed "should have run the template successfully" with e -> if e.Message.Contains "Command succeeded" && From f19dffb84a4713d9fa256087eb152acc3a5cd209 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 13:12:22 +0200 Subject: [PATCH 09/19] Fix after merge or https://github.com/fsharp/FAKE/pull/2379 - add tests - Change getVersion to not throw nullreferenceException, fixes https://github.com/fsharp/FAKE/issues/2378 --- src/app/Fake.IO.FileSystem/File.fs | 19 +++++++++--------- .../Fake.Core.IntegrationTests.fsproj | 5 +++-- .../Fake.IO.File.fs | 10 +++++++++ .../Fake.Core.IntegrationTests/TestHelpers.fs | 4 ++++ .../testdata/NoVersionTestFile.dll | Bin 0 -> 10240 bytes .../Fake.Core.UnitTests.fsproj | 2 +- 6 files changed, 28 insertions(+), 12 deletions(-) create mode 100644 src/test/Fake.Core.IntegrationTests/testdata/NoVersionTestFile.dll diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index dde4eab16b2..72b02ea23eb 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -54,23 +54,24 @@ module File = /// Checks if all given files exist. let allExist files = Seq.forall File.Exists files - /// Get the version a file. + /// Tries to get the version a file. Throws FileNotFoundException if the file doesn't exist. + /// Returns None if the file doesn't contain a FileVersion component. /// ## Parameters /// /// - 'fileName' - Name of file from which the version is retrieved. The path can be relative. - let getVersion (fileName : string) = + let tryGetVersion (fileName : string) : string option = Path.getFullName fileName |> System.Diagnostics.FileVersionInfo.GetVersionInfo - |> fun x -> x.FileVersion.ToString() - - /// Trys to get the version a file. + |> fun x -> if isNull x.FileVersion then None else Some x.FileVersion + + /// Get the version a file. This overload throws when the file has no version, consider using tryGetVersion instead /// ## Parameters /// /// - 'fileName' - Name of file from which the version is retrieved. The path can be relative. - let tryGetVersion (fileName : string) = - Path.getFullName fileName - |> System.Diagnostics.FileVersionInfo.GetVersionInfo - |> fun x -> if (isNull x.FileVersion) then None else Some (x.FileVersion.ToString()) + let getVersion (fileName : string) : string = + match tryGetVersion fileName with + | Some v -> v + | None -> raise <| System.InvalidOperationException(sprintf "The file '%s' doesn't contain a file version" fileName) /// Creates a file if it does not exist. let create fileName = diff --git a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj index 274270947d1..d55cc32948d 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj +++ b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj @@ -20,8 +20,9 @@ - - + + + diff --git a/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs b/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs index 4e327a6742a..5b693a9bce1 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs +++ b/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs @@ -8,6 +8,16 @@ open Fake.Core.IntegrationTests.TestHelpers [] let tests = testList "Fake.IO.FileIntegraionTests" [ + testCase "File.getVersion throws InvalidOperationException #2378" <| fun _ -> + let testFile = getTestFile "NoVersionTestFile.dll" + Expect.throwsT (fun () -> + File.getVersion testFile + |> ignore + ) "Expected InvalidOperationException for missing file version" + testCase "File.tryGetVersion works when component is missing #2378" <| fun _ -> + let testFile = getTestFile "NoVersionTestFile.dll" + Expect.equal (File.tryGetVersion testFile) None "Expected None for missing file version" + testCase "Files created using File.create can be used immediately - #2183" <| fun _ -> let testFile = Path.combine (Path.GetTempPath ()) (Path.GetRandomFileName ()) diff --git a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs index 2333a0ecaf4..44b1b28fe80 100644 --- a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs +++ b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs @@ -27,6 +27,10 @@ let createTestDir () = |> ignore { Dir = testFile } +let getTestFile testFile = + let testDirLocation = System.IO.Path.GetDirectoryName (typeof.Assembly.Location) + Path.Combine(testDirLocation, "testdata", testFile) + exception FakeExecutionFailed of ProcessResult with override x.ToString() = diff --git a/src/test/Fake.Core.IntegrationTests/testdata/NoVersionTestFile.dll b/src/test/Fake.Core.IntegrationTests/testdata/NoVersionTestFile.dll new file mode 100644 index 0000000000000000000000000000000000000000..3c4e81df74987a940bffc9c6466e5a7283040feb GIT binary patch literal 10240 zcmeHNYiu0V6+U-n_Tja6{o1^oV8%EB6K4n8A%Q?b?D!D^F$q}*nqo@E>#@CLy|c`W z6G9&tAyxbx=tDxwG#i55^L5Nf5iDr(CQen7u-=i#-z z>lj7-RjxBzbG=x_ZU2XB~51FPP=B?demN?ktq`Vp$(Kme=R)Y0F5bQ`-a4$47~d3YE4L zrtS?#`!i*_8by-mDqs{Jn;FDg$8#DFYp3IdKGvH{_@)bJ1UxDY#)w+vzomE3WG0kn z4iZiK)!J~8s0lsUL85K7DQaVNBFrEvNwjZ`T119tJ?NpG?E*kw^<2@CMaOIn$8`#5 z3C5hp!*dIbhbosr{4*S@WP^}(rA0hUcQu}>GDvi&swu1QWBy!NH-%!f9r`S$gYkfS z+8|O}nPPpVy-%atK&le8x=<#SirWyEQnGdiuf{}Ea^t6B*EMmw8BMhZ^XlED^eVlL zv8;`8Qdd*2Ag!kjRqB1!C)-K1wJ%0rfn35uPW-MQ$0|)H}xLHF_wVKu$MG$r6EWXhw`@_ z68;KE`<}ht=reZr?e5>lbTKLcHo*bAzd`gM-cQ5py7Qh>EYG@3u`NY(Bi`L7^E81v zi|;;s^2i9@(`awQ*xiRp_7vJ&ptHF93MJV9!_g;VH^qTK^-4SmJZQ@0r7ptA`I{|aY4lCQ}H*zO$x)k66Pg5FX0msJ}2R?CHz=2H$I0?g2& z_B!w{Nz5A({u?k(u~@SjCmoQrKaD3Q=dy_D{E{9GT92UhHoace_cnbXTPiVSS`@2V zW1>gIU`xO6Q85v;@{1p87e#*Yh8V-c65cJLC*fm&$91Sc8|fYOt3uGTLF@b47R9&y z2hdZY4*^yB2cSm(0TkrppVwOHL(xuK0DGxR!fPe$mvEniLlPd5@J_%t>6EOSfIGzl zfP;X?)Irfiv+7aQ%W7UcNk34(B(f6o6uqU|;yF-0A+|}(b}8W^-Ko7RULa5VSnQJc zH|RT>P~JxGKIN}c@<)KhZkXIMn%v$S=Z#A^wBB$BdDr4CHk9)34Y;D zgeAHa!H?@QfZ!dY7qu=jMUMV1G>V7AjG1RFW7u{qW5RULxW;s;L}U3m)2ZZ(vt`p; zaI6v2GmRB=0nM?BSDY_CWO_xrT$617xIMj4vTmXLdDpY%>Dbi$R>7mP<++|&o;ICn z+MoAK$6Kfj5dgk)~bQS&MNbnrMgtd9XLqATP=H{=#{M1=(>W&Ezg{W zr!KMhE@!|C;G~ujaN@*-b2zh>H--$-I%hj)RIC(A{Tj+D>ZXDq^?_l=g!ifc{N1a!*7>U68= z&dCLEEIMkIXBW&_>$rn$t-@8^gNK5YOLU@CaMP8_$Q$G2&s1C4X_9*@bzl>gkPIwR`n!wX+zAWQg&~~aZC0y2ZdNLo_>#VPd%-DK!*<#A9Qf5($wYz_x}@|e zI$DGw&C(K&znqqH$g$74wN|>S3oGndk-)%vqjun9QM=Y2h&rowPlOA-_`X96#nLoF zs)f*f%>% z%DYeUcVBJ)?6usxcP4*)@VIXW{e)G4`(mMV1af`eESt03kTIU9T~KB@ z15u-(_#UHwuhEZ*2+I2PoLQ>OnFg*QW{G=Zx*{?e^fyHIN)7b&@5}Ywm>bwbv{%rU zx(A4$iA**M0wYDYQZmoqftUcXLbUEl3R3w5B{kl*Pl+o?MMPpl+X1C*NQvvB9VwQk zQ|l0N7Y$UC9G+?bF;c>1=ZpLKe+lDfkOmmA6owT9N(mII|$&~PWp>-zUXN@vYvXjyYCOhR* zWHOil^YY9(DfEU=7q&9Y@c_)hHv>2a_ek8=f%D5Cp!BNfvrhi43_l}_Vu)-!NP zo!Buecucrwk;*g+oQXF(@w}{=z=b`bySub)EwN2|;O70bSHhm^Mh+rN7;p}612vlp z62s)#0VIa~NQ-iK-v~HBaFiirODZ*1=OvBRC+^CP&>)hBSK<;2aoS-fu0T+{3zQHr3!IhagEccIKm)yTIZ6aS_gXHT0_@j z@I%11P-;~qi=wJgUuG@xFp}&DW!4Ivk?98`PSwn}Fq@O3st_ZL}Y^@nqw}ev*52MKJz4d3eineA%P6WwVYAG4pTrU|L z2nSo0zaclSoxjzO^|j;tox?Xxo^)}im_$zF%}owfDmZe@$)kL}OiozymC3rNN3=O3 z>$t{@o0jKL-tzdcb2UCb2QWy*vG1ScBW@C(+9r{+Os+UsCztLkkdj(zC4wwYTR99*W zc+1M{syXZqc2Lv~Bt=1_N@R3jXb+jILPn%Y=yFTB(!J}Nnmu*@q)cHZtHM1llq=UH zTH(M3+t(w#L6B%r8g_}Cl513Rjn^SJP!5Px8>xz_39TX3*u>Q|gBAwu3^p>@%%FpT zPMWfP$JLU&U%~-Wl-;s+y&}c3q=P~QBVP0Tyh3!yGP4FR|rVomlK>85lVmAytflSbeYHyG(nY3wXKpKMuYq-&B8u_wC(5c8FIyQCSA}Ve+I<|D^k-)&*98UHtDOfC= zPB87j;1^(Fz8tcTu(A1JWBWdX-G6}gr(4oHMFKtCSycj~E6OQ!FheaNBCgy*Vt*!^ z>5@RmISA1V!?lQm7+kOoc{!wbc5Pf*MP?hRgJ5jVHg`*~ZpJG}8v<}1Rv#os+tef#liVuUaE!%dD1nXw(q{Ijq+q3P41nXw(_P0|KKZ=cNDXoQn5U(!5 z>hdPzXuuC!m!EKG$Nill#i_6l8u; bzOcX-7Wf}qV9@_RLoN83;EVGAXMz6$g3|#o literal 0 HcmV?d00001 diff --git a/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj b/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj index 11814ff2802..3a2ae74723e 100644 --- a/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj +++ b/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj @@ -1,4 +1,4 @@ - + Exe From 1ddb884b2d3475b0780c309d1bfef6bbfa80191d Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 13:14:52 +0200 Subject: [PATCH 10/19] release notes --- RELEASE_NOTES.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 7c5668394e7..057d0f265c0 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,8 +2,9 @@ ## 5.16.1-alpha - tbd -* BUGFIX: Fix https://github.com/fsharp/FAKE/issues/2382 -* BUGFIX: Fix https://github.com/fsharp/FAKE/issues/2381 +* BUGFIX: Fix that `generate_load_scripts` prevents restore after update - https://github.com/fsharp/FAKE/issues/2382 +* BUGFIX: Fix FAKE unable to load assemblies in some scenarios - https://github.com/fsharp/FAKE/issues/2381 +* BUGFIX: Fix File.getVersion fails if version is not set, thanks @SCullman - https://github.com/fsharp/FAKE/issues/2378 ## 5.16.0 - 2019-08-17 From 1ef62b41b032643cefda19001c689dafb88f8762 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 16:21:11 +0200 Subject: [PATCH 11/19] Ignore new FileVersion tests on non-windows Add new ProcessUtils api to find tools via PATH, envVar and given directories recursively Some cleanup Add tests for Paket.findPaketExecutable --- RELEASE_NOTES.md | 1 + src/app/Fake.Core.Environment/Environment.fs | 27 ++++ src/app/Fake.Core.Process/ProcessUtils.fs | 131 +++++++++++------- .../Fake.DotNet.Paket.fsproj | 3 +- src/app/Fake.DotNet.Paket/Paket.fs | 14 +- src/app/Fake.DotNet.Paket/ThisAssemblyInfo.fs | 6 + .../Fake.IO.FileSystem.fsproj | 2 +- src/app/Fake.IO.FileSystem/File.fs | 9 +- src/app/Fake.IO.FileSystem/Globbing.fs | 3 +- .../Fake.IO.FileSystem/GlobbingFileSystem.fs | 4 + .../Fake.Core.IntegrationTests.fsproj | 3 + .../Fake.DotNet.Paket.fs | 29 ++++ .../Fake.IO.File.fs | 5 +- .../Fake.IO.Globbing.fs | 72 ++++++++++ .../Fake.Core.UnitTests/Fake.IO.Globbing.fs | 66 --------- 15 files changed, 245 insertions(+), 130 deletions(-) create mode 100644 src/app/Fake.DotNet.Paket/ThisAssemblyInfo.fs create mode 100644 src/test/Fake.Core.IntegrationTests/Fake.DotNet.Paket.fs create mode 100644 src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 057d0f265c0..93c5a3c8c57 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -5,6 +5,7 @@ * BUGFIX: Fix that `generate_load_scripts` prevents restore after update - https://github.com/fsharp/FAKE/issues/2382 * BUGFIX: Fix FAKE unable to load assemblies in some scenarios - https://github.com/fsharp/FAKE/issues/2381 * BUGFIX: Fix File.getVersion fails if version is not set, thanks @SCullman - https://github.com/fsharp/FAKE/issues/2378 +* ENHANCEMENT: make `Fake.DotNet.Paket` work with the dotnet tool based version of Paket, thanks @seanamosw - https://github.com/fsharp/FAKE/pull/2364 ## 5.16.0 - 2019-08-17 diff --git a/src/app/Fake.Core.Environment/Environment.fs b/src/app/Fake.Core.Environment/Environment.fs index 5b643eadb73..c84e7c602dd 100644 --- a/src/app/Fake.Core.Environment/Environment.fs +++ b/src/app/Fake.Core.Environment/Environment.fs @@ -298,6 +298,33 @@ module Environment = #endif | enc -> Text.Encoding.GetEncoding(enc) + let private getEnvDir specialPath = + let dir = Environment.GetFolderPath specialPath + if String.IsNullOrEmpty dir then None else Some dir + let private localRootForTempData() = + getEnvDir Environment.SpecialFolder.UserProfile + |> Option.orElse (getEnvDir Environment.SpecialFolder.LocalApplicationData) + |> Option.defaultWith (fun _ -> + let fallback = Path.GetFullPath ".paket" + //Logging.traceWarnfn "Could not detect a root for our (user specific) temporary files. Try to set the 'HOME' or 'LocalAppData' environment variable!. Using '%s' instead." fallback + if not (Directory.Exists fallback) then + Directory.CreateDirectory fallback |> ignore + fallback + ) + let [] private globalPackagesFolderEnvironmentKey = "NUGET_PACKAGES" + let private nugetPackagesFolder = + lazy + environVarOrNone globalPackagesFolderEnvironmentKey + |> Option.map (fun path -> + path.Replace (Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar) + ) |> Option.defaultWith (fun _ -> + Path.Combine (localRootForTempData(),".nuget","packages") + ) + /// Returns the path to the user-specific nuget packages folder + let getNuGetPackagesCacheFolder() = nugetPackagesFolder.Value + + + #if !NETSTANDARD [] /// Returns a sequence with all installed .NET framework versions diff --git a/src/app/Fake.Core.Process/ProcessUtils.fs b/src/app/Fake.Core.Process/ProcessUtils.fs index 2f832ae2f0d..50f716ff755 100644 --- a/src/app/Fake.Core.Process/ProcessUtils.fs +++ b/src/app/Fake.Core.Process/ProcessUtils.fs @@ -13,86 +13,123 @@ module ProcessUtils = let private findFilesInternal dirs file = let files = dirs - |> Seq.map (fun (path : string) -> - let replacedPath = - path - |> String.replace "[ProgramFiles]" Environment.ProgramFiles - |> String.replace "[ProgramFilesX86]" Environment.ProgramFilesX86 - |> String.replace "[SystemRoot]" Environment.SystemRoot - try - let dir = - replacedPath - |> DirectoryInfo.ofPath - if not dir.Exists then "" - else - let fi = dir.FullName @@ file - |> FileInfo.ofPath - if fi.Exists then fi.FullName - else "" - with e -> - raise <| exn(sprintf "Error while trying to find files like '%s' in path '%s' (replaced '%s'). Please report this issue to FAKE and reference https://github.com/fsharp/FAKE/issues/2136." file path replacedPath, e)) - |> Seq.filter ((<>) "") + |> Seq.choose (fun (path : string) -> + let replacedPath = + path + |> String.replace "[ProgramFiles]" Environment.ProgramFiles + |> String.replace "[ProgramFilesX86]" Environment.ProgramFilesX86 + |> String.replace "[SystemRoot]" Environment.SystemRoot + try + if not (System.IO.Directory.Exists replacedPath) then + None + else + let filePath = replacedPath file + if File.exists filePath then + Some filePath + else None + with e -> + raise <| exn(sprintf "Error while trying to find files like '%s' in path '%s' (replaced '%s'). Please report this issue to FAKE and reference https://github.com/fsharp/FAKE/issues/2136." file path replacedPath, e)) |> Seq.cache files /// Searches the given directories for all occurrences of the given file name, on windows PATHEXT is considered (and preferred when searching) - let findFiles dirs file = + let findFiles dirs tool = // See https://unix.stackexchange.com/questions/280528/is-there-a-unix-equivalent-of-the-windows-environment-variable-pathext if Environment.isWindows then // Prefer PATHEXT, see https://github.com/fsharp/FAKE/issues/1911 // and https://github.com/fsharp/FAKE/issues/1899 Environment.environVarOrDefault "PATHEXT" ".COM;.EXE;.BAT" |> String.split ';' - |> Seq.collect (fun postFix -> findFilesInternal dirs (file + postFix)) - |> fun findings -> Seq.append findings (findFilesInternal dirs file) - else findFilesInternal dirs file + |> Seq.collect (fun postFix -> findFilesInternal dirs (tool + postFix)) + |> fun findings -> Seq.append findings (findFilesInternal dirs tool) + else findFilesInternal dirs tool - /// Searches the given directories for all occurrences of the given file name - /// [omit] - let tryFindFile dirs file = - let files = findFiles dirs file + /// Searches the given directories for all occurrences of the given file name. Considers PATHEXT on Windows. + let tryFindFile dirs tool = + let files = findFiles dirs tool if not (Seq.isEmpty files) then Some(Seq.head files) else None - /// Searches the given directories for the given file, failing if not found. - /// [omit] - let findFile dirs file = - match tryFindFile dirs file with + /// Searches the given directories for the given file, failing if not found. Considers PATHEXT on Windows. + let findFile dirs tool = + match tryFindFile dirs tool with | Some found -> found - | None -> failwithf "%s not found in %A." file dirs + | None -> failwithf "%s not found in %A." tool dirs - /// Searches in PATH for the given file and returnes the result ordered by precendence - let findFilesOnPath (file : string) : string seq = + let private getCurrentAndPathDirs () = Environment.pathDirectories |> Seq.filter Path.isValidPath |> Seq.append [ "." ] - |> fun dirs -> findFiles dirs file + + /// Searches the current directory and in PATH for the given file and returnes the result ordered by precendence. Considers PATHEXT on Windows. + let findFilesOnPath (tool : string) : string seq = + getCurrentAndPathDirs() + |> fun dirs -> findFiles dirs tool /// Searches the current directory and the directories within the PATH /// environment variable for the given file. If successful returns the full - /// path to the file. + /// path to the file. Considers PATHEXT on Windows. /// ## Parameters /// - `file` - The file to locate - let tryFindFileOnPath (file : string) : string option = - findFilesOnPath file |> Seq.tryHead - + let tryFindFileOnPath (tool : string) : string option = + findFilesOnPath tool |> Seq.tryHead - /// Tries to find the tool via Env-Var. If no path has the right tool we are trying the PATH system variable. + /// Tries to find the tool via Env-Var. If no path has the right tool we are trying the PATH system variable. Considers PATHEXT on Windows. let tryFindTool envVar tool = match Environment.environVarOrNone envVar with | Some path -> Some path | None -> tryFindFileOnPath tool - /// Tries to find the tool via AppSettings. If no path has the right tool we are trying the PATH system variable. - /// [omit] - let tryFindPath fallbackValue tool = - match tryFindFile fallbackValue tool with - | Some path -> Some path - | None -> tryFindFileOnPath tool + /// Tries to find the tool via given directories. If no path has the right tool we are trying the current directory and the PATH system variable. Considers PATHEXT on Windows. + let tryFindPath additionalDirs tool = + Seq.append additionalDirs (getCurrentAndPathDirs()) + |> fun dirs -> findFiles dirs tool + |> Seq.tryHead - /// Tries to find the tool via AppSettings. If no path has the right tool we are trying the PATH system variable. + /// Tries to find the tool via Env-Var. If no path has the right tool we are trying the PATH system variable. Considers PATHEXT on Windows. /// [omit] let findPath fallbackValue tool = match tryFindPath fallbackValue tool with | Some file -> file | None -> tool + + /// Walks directories via breadth first search (BFS) + let private walkDirectories dirs = + let rec enumerateDirs dirs = + let subDirs = dirs |> Seq.collect System.IO.Directory.EnumerateDirectories |> Seq.cache + if Seq.isEmpty subDirs then Seq.empty + else + seq { + yield! subDirs + yield! subDirs |> enumerateDirs + } + seq { + yield! dirs + yield! enumerateDirs dirs + } + + /// Find a local tool in the given envar the given directories, the current directory or PATH (in this order) + /// Recommended usage `tryFindLocalTool "TOOL" "tool" [ "." ]` + let tryFindLocalTool envVar tool recursiveDirs = + let envDir = + match Environment.environVarOrNone envVar with + | Some path when File.exists path -> [ System.IO.Path.GetDirectoryName path ] + | Some path when System.IO.Directory.Exists path -> [ path ] + | _ -> [] + let dirs = + getCurrentAndPathDirs() + |> Seq.append (walkDirectories recursiveDirs) + |> Seq.append envDir + findFiles dirs tool + |> Seq.tryHead + + /// Like tryFindLocalTool but returns the `tool` string if nothing is found (will probably error later, but this function is OK to be used for fake default values. + let findLocalTool envVar tool recursiveDirs = + match tryFindLocalTool envVar tool recursiveDirs with + | Some p -> p + | None -> tool + + //let tryFindNuGetTool packageName envVar tool = + // let packagesDir = "packages" + // let nugetDirs = + // [ System.IO.Path.Combine(Environment.getNuGetPackagesCacheFolder(), packageName); ] diff --git a/src/app/Fake.DotNet.Paket/Fake.DotNet.Paket.fsproj b/src/app/Fake.DotNet.Paket/Fake.DotNet.Paket.fsproj index 12a6c58d185..98b2818d046 100644 --- a/src/app/Fake.DotNet.Paket/Fake.DotNet.Paket.fsproj +++ b/src/app/Fake.DotNet.Paket/Fake.DotNet.Paket.fsproj @@ -1,4 +1,4 @@ - + netstandard2.0;net462 $(DefineConstants);NO_DOTNETCORE_BOOTSTRAP @@ -13,6 +13,7 @@ + diff --git a/src/app/Fake.DotNet.Paket/Paket.fs b/src/app/Fake.DotNet.Paket/Paket.fs index 0148630691d..55ccbe2ffc2 100644 --- a/src/app/Fake.DotNet.Paket/Paket.fs +++ b/src/app/Fake.DotNet.Paket/Paket.fs @@ -32,16 +32,12 @@ type PaketPackParams = MinimumFromLockFile : bool PinProjectReferences : bool } -let private findPaketExecutable () = - match Tools.tryFindToolFolderInSubPath "paket.exe" with - | Some folder -> - folder @@ "paket.exe" - | None -> - (Tools.findToolFolderInSubPath "paket" (Directory.GetCurrentDirectory() @@ ".paket")) @@ "paket" +let internal findPaketExecutable (baseDir) = + ProcessUtils.findLocalTool "PAKET" "paket" [ Path.Combine(baseDir, ".paket") ] /// Paket pack default parameters let PaketPackDefaults() : PaketPackParams = - { ToolPath = findPaketExecutable () + { ToolPath = findPaketExecutable "" TimeOut = TimeSpan.FromMinutes 5. Version = null SpecificVersions = [] @@ -71,7 +67,7 @@ type PaketPushParams = /// Paket push default parameters let PaketPushDefaults() : PaketPushParams = - { ToolPath = findPaketExecutable () + { ToolPath = findPaketExecutable "" TimeOut = System.TimeSpan.MaxValue PublishUrl = null EndPoint = null @@ -91,7 +87,7 @@ type PaketRestoreParams = /// Paket restore default parameters let PaketRestoreDefaults() : PaketRestoreParams = - { ToolPath = findPaketExecutable () + { ToolPath = findPaketExecutable "" TimeOut = System.TimeSpan.MaxValue WorkingDir = "." ForceDownloadOfPackages = false diff --git a/src/app/Fake.DotNet.Paket/ThisAssemblyInfo.fs b/src/app/Fake.DotNet.Paket/ThisAssemblyInfo.fs new file mode 100644 index 00000000000..e8cd9631ca6 --- /dev/null +++ b/src/app/Fake.DotNet.Paket/ThisAssemblyInfo.fs @@ -0,0 +1,6 @@ +namespace System +open System.Runtime.CompilerServices + +[] +[] +do () diff --git a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj index df48598f2eb..d844d0758bb 100644 --- a/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj +++ b/src/app/Fake.IO.FileSystem/Fake.IO.FileSystem.fsproj @@ -1,4 +1,4 @@ - + netstandard2.0;net462 $(DefineConstants);DOTNETCORE diff --git a/src/app/Fake.IO.FileSystem/File.fs b/src/app/Fake.IO.FileSystem/File.fs index 72b02ea23eb..74bfd7ac1af 100644 --- a/src/app/Fake.IO.FileSystem/File.fs +++ b/src/app/Fake.IO.FileSystem/File.fs @@ -56,6 +56,7 @@ module File = /// Tries to get the version a file. Throws FileNotFoundException if the file doesn't exist. /// Returns None if the file doesn't contain a FileVersion component. + /// On non-windows platforms this API returns assembly metadata instead, see https://github.com/dotnet/corefx/blob/5fb98a118bb19a91e8ffb5c17ff5e7c00a4c05ee/src/System.Diagnostics.FileVersionInfo/src/System/Diagnostics/FileVersionInfo.Unix.cs#L20-L28 /// ## Parameters /// /// - 'fileName' - Name of file from which the version is retrieved. The path can be relative. @@ -64,7 +65,8 @@ module File = |> System.Diagnostics.FileVersionInfo.GetVersionInfo |> fun x -> if isNull x.FileVersion then None else Some x.FileVersion - /// Get the version a file. This overload throws when the file has no version, consider using tryGetVersion instead + /// Get the version a file. This overload throws when the file has no version, consider using tryGetVersion instead. + /// On non-windows platforms this API returns assembly metadata instead, see https://github.com/dotnet/corefx/blob/5fb98a118bb19a91e8ffb5c17ff5e7c00a4c05ee/src/System.Diagnostics.FileVersionInfo/src/System/Diagnostics/FileVersionInfo.Unix.cs#L20-L28 /// ## Parameters /// /// - 'fileName' - Name of file from which the version is retrieved. The path can be relative. @@ -128,8 +130,9 @@ module File = 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 + ( use writer = new StreamWriter(file, encoding) + writer.Write text) + file.Close() let writeString append fileName (text : string) = writeStringWithEncoding (getEncodingOrUtf8WithoutBom fileName) append fileName text diff --git a/src/app/Fake.IO.FileSystem/Globbing.fs b/src/app/Fake.IO.FileSystem/Globbing.fs index f85592fa33a..65c31771e04 100644 --- a/src/app/Fake.IO.FileSystem/Globbing.fs +++ b/src/app/Fake.IO.FileSystem/Globbing.fs @@ -151,8 +151,7 @@ let internal compileGlobToRegex pattern = "dirwildcard", (@"\\\*\\\*(/|\\\\)", @"(.*(/|\\))?") "stardotstar", (@"\\\*\\.\\\*", @"([^\\/]*)") "wildcard", (@"\\\*", @"([^\\/]*)") - ] |> List.map(fun (key, reg) -> - let pattern, replace = reg + ] |> List.map(fun (key, (pattern, replace)) -> let pattern = sprintf "(?<%s>%s)" key pattern key, (pattern, replace) ) diff --git a/src/app/Fake.IO.FileSystem/GlobbingFileSystem.fs b/src/app/Fake.IO.FileSystem/GlobbingFileSystem.fs index b36aa70f957..8eae853807d 100644 --- a/src/app/Fake.IO.FileSystem/GlobbingFileSystem.fs +++ b/src/app/Fake.IO.FileSystem/GlobbingFileSystem.fs @@ -216,6 +216,7 @@ module Operators = let inline (!!) x = GlobbingPattern.create x [] +[] module Tools = open Operators @@ -223,6 +224,7 @@ module Tools = /// Looks for a tool first in its default path, if not found the in ./packages/ and then /// in all subfolders of the root folder - returns the tool file name. + [] let findToolInSubPath (toolname:string) (defaultPath:string) = try let tools = !! (defaultPath @@ "/**/" @@ toolname) @@ -240,12 +242,14 @@ module Tools = /// Looks for a tool in all subfolders - returns the folder where the tool was found /// or None if not found. + [] let tryFindToolFolderInSubPath toolname = !! ("./**/" @@ toolname) |> Seq.tryHead |> Option.map Path.GetDirectoryName /// Looks for a tool in all subfolders - returns the folder where the tool was found. + [] let findToolFolderInSubPath toolname defaultPath = toolname |> tryFindToolFolderInSubPath diff --git a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj index d55cc32948d..81cc756499a 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj +++ b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj @@ -6,6 +6,7 @@ + @@ -16,7 +17,9 @@ + + diff --git a/src/test/Fake.Core.IntegrationTests/Fake.DotNet.Paket.fs b/src/test/Fake.Core.IntegrationTests/Fake.DotNet.Paket.fs new file mode 100644 index 00000000000..992e0e11a91 --- /dev/null +++ b/src/test/Fake.Core.IntegrationTests/Fake.DotNet.Paket.fs @@ -0,0 +1,29 @@ +module Fake.DotNet.PaketIntegrationTests + +open Fake.IO +open Fake.Core +open Fake.Core.IntegrationTests.TestHelpers +open Fake.DotNet +open System.IO +open Expecto + +[] +let tests = + testList "Fake.DotNet.PaketIntegrationTests" [ + testCase "findPaketExecutable works for global tools - #2361" <| fun _ -> + use dir = createTestDir() + let folder = dir.Dir + let paketDir = Path.Combine(folder, ".paket") + Directory.ensure paketDir + let paketExe = Path.Combine(paketDir, if Environment.isWindows then "paket.exe" else "paket") + File.WriteAllText(paketExe, "test") + let store = Path.Combine(folder, ".paket", "store", "paket") + Directory.ensure store + let testFile = Path.Combine(folder, ".paket", "store", "paket", "test") + File.WriteAllText(testFile, "test") + + + let result = Fake.DotNet.Paket.findPaketExecutable dir.Dir + let expected = Path.combine folder (if Environment.isWindows then ".paket/paket.EXE" else ".paket/paket") |> Path.getFullName + Expect.equal result expected "Expected proper file path" + ] diff --git a/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs b/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs index 5b693a9bce1..045b0853a3c 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs +++ b/src/test/Fake.Core.IntegrationTests/Fake.IO.File.fs @@ -4,17 +4,20 @@ open Fake.IO open System.IO open Expecto open Fake.Core.IntegrationTests.TestHelpers +open Fake.Core [] let tests = - testList "Fake.IO.FileIntegraionTests" [ + testList "Fake.IO.FileIntegrationTests" [ testCase "File.getVersion throws InvalidOperationException #2378" <| fun _ -> + if Environment.isWindows then // On non-windows the API returns managed assembly info, see https://github.com/dotnet/corefx/blob/5fb98a118bb19a91e8ffb5c17ff5e7c00a4c05ee/src/System.Diagnostics.FileVersionInfo/src/System/Diagnostics/FileVersionInfo.Unix.cs#L20-L28 let testFile = getTestFile "NoVersionTestFile.dll" Expect.throwsT (fun () -> File.getVersion testFile |> ignore ) "Expected InvalidOperationException for missing file version" testCase "File.tryGetVersion works when component is missing #2378" <| fun _ -> + if Environment.isWindows then // On non-windows the API returns managed assembly info, see https://github.com/dotnet/corefx/blob/5fb98a118bb19a91e8ffb5c17ff5e7c00a4c05ee/src/System.Diagnostics.FileVersionInfo/src/System/Diagnostics/FileVersionInfo.Unix.cs#L20-L28 let testFile = getTestFile "NoVersionTestFile.dll" Expect.equal (File.tryGetVersion testFile) None "Expected None for missing file version" diff --git a/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs b/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs new file mode 100644 index 00000000000..df9cfc5a011 --- /dev/null +++ b/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs @@ -0,0 +1,72 @@ +module Fake.IO.GlobbingIntegrationTests + +open Fake.IO +open System.IO +open Expecto +open Fake.Core.IntegrationTests.TestHelpers +open System.Reflection +open System +open Fake.IO.Globbing +open Fake.IO.FileSystemOperators +open Fake.IO.Globbing.Operators + +[] +let toolsTests = + + // Sequenced because otherwise folders conflict with the globbing pattern '!! "./**"' in the impl. + testSequencedGroup "Find tool paths" <| + testList "Fake.Core.Globbing.Tools.Tests" [ + testCase "Test try find tool folder in sub path" <| fun _ -> + use testDir = createTestDir() + let folder = testDir.Dir + + let filepath = folder "sometool" + File.create filepath |> ignore + + Tools.tryFindToolFolderInSubPath "sometool" + |> Flip.Expect.equal "Expected tools folder to be found" (Some folder) + + testCase "Test cannot find tool folder in sub path" <| fun _ -> + Tools.tryFindToolFolderInSubPath "SomeMissingTool" + |> Flip.Expect.isNone "Expected tools folder not to be found" + + testCase "Test find tool folder in sub path" <| fun _ -> + use testDir = createTestDir() + let folder = testDir.Dir + + let filepath = folder "sometool" + File.create filepath |> ignore + + Tools.findToolFolderInSubPath "sometool" "defaultToolsPath" + |> Flip.Expect.equal "Expected tools folder to be found" folder + + testCase "Test cannot find tool folder in sub path returns default" <| fun _ -> + Tools.findToolFolderInSubPath "SomeMissingTool" "defaultpath" + |> Flip.Expect.equal "Expected default path to be returned" "defaultpath" + ] + +[] +let tests = + testList "Fake.Core.Globbing.IntegrationTests" [ + testCase "glob should handle substring directories properly" <| fun _ -> + let testDir = Path.GetTempFileName() + File.Delete testDir + Directory.CreateDirectory testDir |> ignore + try + let name = testDir "Name" + let nameWithSuffix = testDir "NameWithSuffix" + Directory.CreateDirectory name |> ignore + Directory.CreateDirectory nameWithSuffix |> ignore + File.WriteAllText(nameWithSuffix "match1.txt", "match1") + File.WriteAllText(nameWithSuffix "match2.txt", "match2") + File.WriteAllText(nameWithSuffix "match3.txt", "match3") + + !! (nameWithSuffix "match*.txt") + |> GlobbingPattern.setBaseDir name + |> Seq.map (fun f -> Path.GetFileName f) + |> Seq.sort + |> Seq.toList + |> Flip.Expect.equal "Expected equal lists." ["match1.txt"; "match2.txt"; "match3.txt"] + finally + Directory.Delete(testDir, true) + ] diff --git a/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs b/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs index ddeb9f749c3..17990425763 100644 --- a/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs +++ b/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs @@ -45,71 +45,5 @@ let tests = let dirIncludes = GlobbingPattern.getBaseDirectoryIncludes(fileIncludes) Expect.equal dirIncludes.Length 2 "Should have only 2 directory" - testCase "glob should handle substring directories properly" <| fun _ -> - let testDir = Path.GetTempFileName() - File.Delete testDir - Directory.CreateDirectory testDir |> ignore - try - let name = testDir "Name" - let nameWithSuffix = testDir "NameWithSuffix" - Directory.CreateDirectory name |> ignore - Directory.CreateDirectory nameWithSuffix |> ignore - File.WriteAllText(nameWithSuffix "match1.txt", "match1") - File.WriteAllText(nameWithSuffix "match2.txt", "match2") - File.WriteAllText(nameWithSuffix "match3.txt", "match3") - - !! (nameWithSuffix "match*.txt") - |> GlobbingPattern.setBaseDir name - |> Seq.map (fun f -> Path.GetFileName f) - |> Seq.sort - |> Seq.toList - |> Flip.Expect.equal "Expected equal lists." ["match1.txt"; "match2.txt"; "match3.txt"] - finally - Directory.Delete(testDir, true) ] - -[] -let toolsTests = - let currentDir = - Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) - let createUniqueDirectory () = - let folder = currentDir ((Guid.NewGuid ()).ToString()) - Directory.CreateDirectory folder |> ignore - folder - - // Sequenced because otherwise folders conflict with the globbing pattern '!! "./**"' in the impl. - testSequencedGroup "Find tool paths" <| - testList "Fake.Core.Globbing.Tools.Tests" [ - testCase "Test try find tool folder in sub path" <| fun _ -> - let folder = createUniqueDirectory () - - try - let filepath = folder "sometool" - File.create filepath |> ignore - - Tools.tryFindToolFolderInSubPath "sometool" - |> Flip.Expect.equal "Expected tools folder to be found" (Some folder) - finally - Directory.Delete(folder, true) - - testCase "Test cannot find tool folder in sub path" <| fun _ -> - Tools.tryFindToolFolderInSubPath "SomeMissingTool" - |> Flip.Expect.isNone "Expected tools folder not to be found" - - testCase "Test find tool folder in sub path" <| fun _ -> - let folder = createUniqueDirectory () - - try - let filepath = folder "sometool" - File.create filepath |> ignore - - Tools.findToolFolderInSubPath "sometool" "defaultToolsPath" - |> Flip.Expect.equal "Expected tools folder to be found" folder - finally - Directory.Delete(folder, true) - - testCase "Test cannot find tool folder in sub path returns default" <| fun _ -> - Tools.findToolFolderInSubPath "SomeMissingTool" "defaultpath" - |> Flip.Expect.equal "Expected default path to be returned" "defaultpath" - ] From 536fda84549e305eb4ddf05c012809c50e52eea1 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 16:39:37 +0200 Subject: [PATCH 12/19] Add link to menu for creating custom modules Fix a couple of links (fixes https://github.com/fsharp/FAKE/issues/2351) --- help/templates/template.cshtml | 1 + src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs | 2 +- src/app/Fake.DotNet.NuGet/NuGet.fs | 2 +- src/app/Fake.DotNet.NuGet/Restore.fs | 2 +- src/legacy/FakeLib/AssemblyInfoFile.fs | 2 +- src/legacy/FakeLib/FscHelper.fs | 2 +- src/legacy/FakeLib/NuGet/NugetHelper.fs | 2 +- src/legacy/FakeLib/OctoTools.fs | 2 +- src/legacy/FakeLib/RestorePackageHelper.fs | 2 +- 9 files changed, 9 insertions(+), 8 deletions(-) diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index 492ae491bff..9e0f72396eb 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -53,6 +53,7 @@ FAKE template Debugging scripts FAKE command-line completion + Create custom modules diff --git a/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs b/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs index e914ef209dc..2676b0d22b3 100644 --- a/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs +++ b/src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs @@ -1,5 +1,5 @@ /// Contains tasks to generate AssemblyInfo files for C# and F#. -/// There is also a tutorial about the [AssemblyInfo tasks](../assemblyinfo.html) available. +/// There is also a tutorial about the [AssemblyInfo tasks](/assemblyinfo.html) available. namespace Fake.DotNet open System diff --git a/src/app/Fake.DotNet.NuGet/NuGet.fs b/src/app/Fake.DotNet.NuGet/NuGet.fs index b5ccfd2cbdc..fb4bd51f67a 100644 --- a/src/app/Fake.DotNet.NuGet/NuGet.fs +++ b/src/app/Fake.DotNet.NuGet/NuGet.fs @@ -1,6 +1,6 @@ /// Contains helper functions and task which allow to inspect, create and publish [NuGet](https://www.nuget.org/) packages. -/// There is also a tutorial about [nuget package creating](../create-nuget-package.html) available. +/// There is also a tutorial about [nuget package creating](/dotnet-nuget.html) available. module Fake.DotNet.NuGet.NuGet open Fake.IO diff --git a/src/app/Fake.DotNet.NuGet/Restore.fs b/src/app/Fake.DotNet.NuGet/Restore.fs index 62fb3769d4d..2485d5628d5 100644 --- a/src/app/Fake.DotNet.NuGet/Restore.fs +++ b/src/app/Fake.DotNet.NuGet/Restore.fs @@ -1,5 +1,5 @@ /// Contains tasks which allow to restore NuGet packages from a NuGet package feed like [nuget.org](http://www.nuget.org). -/// There is also a tutorial about [nuget package restore](../nuget.html) available. +/// There is also a tutorial about [nuget package restore](/dotnet-nuget.html) available. module Fake.DotNet.NuGet.Restore open Fake.IO diff --git a/src/legacy/FakeLib/AssemblyInfoFile.fs b/src/legacy/FakeLib/AssemblyInfoFile.fs index d6b33e75b66..ad0f038798c 100644 --- a/src/legacy/FakeLib/AssemblyInfoFile.fs +++ b/src/legacy/FakeLib/AssemblyInfoFile.fs @@ -1,5 +1,5 @@ /// Contains tasks to generate AssemblyInfo files for C# and F#. -/// There is also a tutorial about the [AssemblyInfo tasks](../assemblyinfo.html) available. +/// There is also a tutorial about the [AssemblyInfo tasks](/assemblyinfo.html) available. [] module Fake.AssemblyInfoFile diff --git a/src/legacy/FakeLib/FscHelper.fs b/src/legacy/FakeLib/FscHelper.fs index 9b1c53e927a..ec240f68d0a 100644 --- a/src/legacy/FakeLib/FscHelper.fs +++ b/src/legacy/FakeLib/FscHelper.fs @@ -1,5 +1,5 @@ /// Contains tasks to compiles F# source file with the [FSharp.Compiler.Service](https://github.com/fsharp/FSharp.Compiler.Service). -/// There is also a tutorial about the [F# compiler tasks](../fsc.html) available. +/// There is also a tutorial about the [F# compiler tasks](/fsc.html) available. [] module Fake.FscHelper diff --git a/src/legacy/FakeLib/NuGet/NugetHelper.fs b/src/legacy/FakeLib/NuGet/NugetHelper.fs index f11952a390e..4c5a08547a1 100644 --- a/src/legacy/FakeLib/NuGet/NugetHelper.fs +++ b/src/legacy/FakeLib/NuGet/NugetHelper.fs @@ -1,6 +1,6 @@ [] /// Contains helper functions and task which allow to inspect, create and publish [NuGet](https://www.nuget.org/) packages. -/// There is also a tutorial about [nuget package creating](../create-nuget-package.html) available. +/// There is also a tutorial about [nuget package creating](/create-nuget-package.html) available. [] module Fake.NuGetHelper diff --git a/src/legacy/FakeLib/OctoTools.fs b/src/legacy/FakeLib/OctoTools.fs index 8f49f75cdb6..2eabb7171e2 100644 --- a/src/legacy/FakeLib/OctoTools.fs +++ b/src/legacy/FakeLib/OctoTools.fs @@ -1,5 +1,5 @@ /// Contains tasks which can be used for automated deployment via [Octopus Deploy](http://octopusdeploy.com/). -/// There is also a tutorial about the [Octopus deployment helper](../octopusdeploy.html) available. +/// There is also a tutorial about the [Octopus deployment helper](/octopusdeploy.html) available. [] module Fake.OctoTools diff --git a/src/legacy/FakeLib/RestorePackageHelper.fs b/src/legacy/FakeLib/RestorePackageHelper.fs index 76d07a983c9..1a7e220f3e8 100644 --- a/src/legacy/FakeLib/RestorePackageHelper.fs +++ b/src/legacy/FakeLib/RestorePackageHelper.fs @@ -1,6 +1,6 @@ [] /// Contains tasks which allow to restore NuGet packages from a NuGet package feed like [nuget.org](http://www.nuget.org). -/// There is also a tutorial about [nuget package restore](../nuget.html) available. +/// There is also a tutorial about [nuget package restore](/nuget.html) available. [] module Fake.RestorePackageHelper From 33beb99f559d48aa24450af42d6e7a9dc3981b3a Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 16:48:16 +0200 Subject: [PATCH 13/19] replace RoslynTools.ReferenceAssemblies with Microsoft.NETFramework.ReferenceAssemblies --- paket.dependencies | 2 -- paket.lock | 2 -- src/Directory.Build.props | 11 ++++++++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/paket.dependencies b/paket.dependencies index ffac1282a61..dcbf4fdc1bf 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -90,7 +90,6 @@ group Build source https://api.nuget.org/v3/index.json //source https://ci.appveyor.com/nuget/fake //source https://ci.appveyor.com/nuget/fsharp-formatting - source https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json nuget FSharp.Core ~> 4.1 nuget NuGet.CommandLine @@ -99,7 +98,6 @@ group Build nuget FSharp.Formatting.CommandTool prerelease nuget SourceLink.Fake nuget ILRepack - nuget RoslynTools.ReferenceAssemblies nuget Newtonsoft.Json github fsharp/FAKE modules/Octokit/Octokit.fsx diff --git a/paket.lock b/paket.lock index 3cb88854807..e44ed4fdd47 100644 --- a/paket.lock +++ b/paket.lock @@ -1851,8 +1851,6 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - remote: https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json - RoslynTools.ReferenceAssemblies (0.1.3) GITHUB remote: fsharp/FAKE modules/Octokit/Octokit.fsx (ceb1805bc258a624fd98f9bd9beebafa03452b7d) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 2b36b9d52ba..0bfb933af49 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -1,7 +1,12 @@ - - $(MSBuildThisFileDirectory)..\packages\build\RoslynTools.ReferenceAssemblies\tools\framework + .pdb; $(AllowedOutputExtensionsInPackageBuildOutputFolder) - + + + + all + runtime; build; native; contentfiles; analyzers + + \ No newline at end of file From b094fca078b6916774f970d3247b67a0c62e3082 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 16:56:19 +0200 Subject: [PATCH 14/19] fix globbing tests --- .../Fake.IO.Globbing.fs | 37 ++++++++----------- .../Fake.Core.IntegrationTests/TestHelpers.fs | 9 ++++- 2 files changed, 24 insertions(+), 22 deletions(-) diff --git a/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs b/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs index df9cfc5a011..6885d2bcde4 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs +++ b/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs @@ -17,7 +17,7 @@ let toolsTests = testSequencedGroup "Find tool paths" <| testList "Fake.Core.Globbing.Tools.Tests" [ testCase "Test try find tool folder in sub path" <| fun _ -> - use testDir = createTestDir() + use testDir = createTestDirInCurrent() let folder = testDir.Dir let filepath = folder "sometool" @@ -31,7 +31,7 @@ let toolsTests = |> Flip.Expect.isNone "Expected tools folder not to be found" testCase "Test find tool folder in sub path" <| fun _ -> - use testDir = createTestDir() + use testDir = createTestDirInCurrent() let folder = testDir.Dir let filepath = folder "sometool" @@ -49,24 +49,19 @@ let toolsTests = let tests = testList "Fake.Core.Globbing.IntegrationTests" [ testCase "glob should handle substring directories properly" <| fun _ -> - let testDir = Path.GetTempFileName() - File.Delete testDir - Directory.CreateDirectory testDir |> ignore - try - let name = testDir "Name" - let nameWithSuffix = testDir "NameWithSuffix" - Directory.CreateDirectory name |> ignore - Directory.CreateDirectory nameWithSuffix |> ignore - File.WriteAllText(nameWithSuffix "match1.txt", "match1") - File.WriteAllText(nameWithSuffix "match2.txt", "match2") - File.WriteAllText(nameWithSuffix "match3.txt", "match3") + use testDir = createTestDir() + let name = testDir "Name" + let nameWithSuffix = testDir "NameWithSuffix" + Directory.CreateDirectory name |> ignore + Directory.CreateDirectory nameWithSuffix |> ignore + File.WriteAllText(nameWithSuffix "match1.txt", "match1") + File.WriteAllText(nameWithSuffix "match2.txt", "match2") + File.WriteAllText(nameWithSuffix "match3.txt", "match3") - !! (nameWithSuffix "match*.txt") - |> GlobbingPattern.setBaseDir name - |> Seq.map (fun f -> Path.GetFileName f) - |> Seq.sort - |> Seq.toList - |> Flip.Expect.equal "Expected equal lists." ["match1.txt"; "match2.txt"; "match3.txt"] - finally - Directory.Delete(testDir, true) + !! (nameWithSuffix "match*.txt") + |> GlobbingPattern.setBaseDir name + |> Seq.map (fun f -> Path.GetFileName f) + |> Seq.sort + |> Seq.toList + |> Flip.Expect.equal "Expected equal lists." ["match1.txt"; "match2.txt"; "match3.txt"] ] diff --git a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs index 44b1b28fe80..8819872717b 100644 --- a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs +++ b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs @@ -27,8 +27,15 @@ let createTestDir () = |> ignore { Dir = testFile } +let testDirLocation = System.IO.Path.GetDirectoryName (typeof.Assembly.Location) + +let createTestDirInCurrent () = + let folder = testDirLocation ((Guid.NewGuid ()).ToString()) + Directory.CreateDirectory folder + |> ignore + { Dir = folder } + let getTestFile testFile = - let testDirLocation = System.IO.Path.GetDirectoryName (typeof.Assembly.Location) Path.Combine(testDirLocation, "testdata", testFile) exception FakeExecutionFailed of ProcessResult From 1ddcc1a7b4dd2c45ba29fca7fd1270ca94d3c5da Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 17:03:48 +0200 Subject: [PATCH 15/19] proper ItemGroup --- src/Directory.Build.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 0bfb933af49..c482147ff79 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -3,10 +3,10 @@ .pdb; $(AllowedOutputExtensionsInPackageBuildOutputFolder) - + all runtime; build; native; contentfiles; analyzers - + \ No newline at end of file From c8b952ea4ec8e66ca8a5480e6c747754768affd1 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 18:23:38 +0200 Subject: [PATCH 16/19] fix build --- src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs b/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs index 6885d2bcde4..ef916b1cf03 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs +++ b/src/test/Fake.Core.IntegrationTests/Fake.IO.Globbing.fs @@ -50,8 +50,8 @@ let tests = testList "Fake.Core.Globbing.IntegrationTests" [ testCase "glob should handle substring directories properly" <| fun _ -> use testDir = createTestDir() - let name = testDir "Name" - let nameWithSuffix = testDir "NameWithSuffix" + let name = testDir.Dir "Name" + let nameWithSuffix = testDir.Dir "NameWithSuffix" Directory.CreateDirectory name |> ignore Directory.CreateDirectory nameWithSuffix |> ignore File.WriteAllText(nameWithSuffix "match1.txt", "match1") From d349e43e75bfb3e5c3dfe6d3ff11851a4f183d0b Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 22:35:43 +0200 Subject: [PATCH 17/19] Add test for SonarQube fix https://github.com/fsharp/FAKE/pull/2358 Added `Arguments.appendRaw*` overloads --- Fake.sln | 1 - RELEASE_NOTES.md | 6 + paket.dependencies | 2 + paket.lock | 296 +++++++++++++++--- src/app/Fake.Core.Process/CmdLineParsing.fs | 37 +++ .../Fake.DotNet.ILMerge.fsproj | 2 +- .../Fake.Testing.SonarQube.fsproj | 3 +- src/app/Fake.Testing.SonarQube/SonarQube.fs | 87 +++-- .../ThisAssemblyInfo.fs | 6 + .../paket.references | 2 + .../paket.references | 2 + .../Fake.Core.UnitTests.fsproj | 2 + .../Fake.Testing.SonarQube.fs | 19 ++ src/test/Fake.Core.UnitTests/paket.references | 2 + .../paket.references | 2 + 15 files changed, 367 insertions(+), 102 deletions(-) create mode 100644 src/app/Fake.Testing.SonarQube/ThisAssemblyInfo.fs create mode 100644 src/test/Fake.Core.UnitTests/Fake.Testing.SonarQube.fs diff --git a/Fake.sln b/Fake.sln index 9d85e797bd3..b7cf07d8c05 100644 --- a/Fake.sln +++ b/Fake.sln @@ -958,7 +958,6 @@ Global {9E26B2AE-856A-42B6-9670-8766919F7D25}.Release|x86.ActiveCfg = Release|Any CPU {9E26B2AE-856A-42B6-9670-8766919F7D25}.Release|x86.Build.0 = Release|Any CPU {29B66A06-1A45-4D65-AC31-7D746449E5D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {29B66A06-1A45-4D65-AC31-7D746449E5D6}.Debug|Any CPU.Build.0 = Debug|Any CPU {29B66A06-1A45-4D65-AC31-7D746449E5D6}.Debug|x64.ActiveCfg = Debug|Any CPU {29B66A06-1A45-4D65-AC31-7D746449E5D6}.Debug|x64.Build.0 = Debug|Any CPU {29B66A06-1A45-4D65-AC31-7D746449E5D6}.Debug|x86.ActiveCfg = Debug|Any CPU diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 93c5a3c8c57..81d56138b56 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -6,6 +6,12 @@ * BUGFIX: Fix FAKE unable to load assemblies in some scenarios - https://github.com/fsharp/FAKE/issues/2381 * BUGFIX: Fix File.getVersion fails if version is not set, thanks @SCullman - https://github.com/fsharp/FAKE/issues/2378 * ENHANCEMENT: make `Fake.DotNet.Paket` work with the dotnet tool based version of Paket, thanks @seanamosw - https://github.com/fsharp/FAKE/pull/2364 +* ENHANCEMENT: add `Organization` field to `Fake.Testing.SonarQube`, thanks @Lutando - https://github.com/fsharp/FAKE/pull/2358 +* ENHANCEMENT: Added `Arguments.appendRaw*` functions to handle weird microsoft escaping. +* ENHANCEMENT: Added `Environment.getNuGetPackagesCacheFolder()`, returns the NuGet packages path. +* ENHANCEMENT: Added `ProcessUtils.tryFindLocalTool` to resolve tools via a common logic (`Fake.IO.Globbing.Tools` is not obsolete) +* DOCS: Fix some broken links - https://github.com/fsharp/FAKE/issues/2351 + ## 5.16.0 - 2019-08-17 diff --git a/paket.dependencies b/paket.dependencies index dcbf4fdc1bf..1f381d2ec28 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -157,6 +157,8 @@ group netcorerunner // Testing nuget Expecto >= 5.0 + nuget YoloDev.Expecto.TestSdk + nuget Microsoft.TestPlatform.TestHost nuget Expecto.TestResults nuget Expecto.FsCheck nuget FsCheck diff --git a/paket.lock b/paket.lock index e44ed4fdd47..f8a852deaf9 100644 --- a/paket.lock +++ b/paket.lock @@ -3888,13 +3888,31 @@ NUGET Microsoft.NETCore.App (2.2.6) - restriction: || (&& (== net462) (== netcoreapp1.1)) (&& (== net462) (== netstandard1.6)) (&& (== netcoreapp1.1) (== netcoreapp2.0)) (&& (== netcoreapp1.1) (== netcoreapp2.1)) (&& (== netcoreapp2.0) (== netstandard1.6)) (&& (== netcoreapp2.1) (== netstandard1.6)) (== netstandard2.0) Microsoft.NETCore.Platforms (2.2.2) Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.TestPlatform.ObjectModel (16.2) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + NETStandard.Library (>= 1.6) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.TextWriterTraceListener (>= 4.0) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Metadata (>= 1.3) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.0) + System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Serialization.Json (>= 4.0.2) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Thread (>= 4.0) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.TestPlatform.TestHost (16.2) + Microsoft.TestPlatform.ObjectModel (>= 16.2) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Win32.Registry (4.5) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Buffers (>= 4.4) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid)) (&& (== net462) (>= monotouch)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== net462) (>= xamarintvos)) (&& (== net462) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Memory (>= 4.5) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net462) (>= monoandroid)) (&& (== net462) (>= monotouch)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== net462) (>= xamarintvos)) (&& (== net462) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Security.AccessControl (>= 4.5) System.Security.Principal.Windows (>= 4.5) Mono.Cecil (0.10.4) @@ -3966,7 +3984,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections.Concurrent (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Concurrent (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -3978,33 +3996,86 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections.Immutable (1.5) - content: none - System.Diagnostics.Debug (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.NonGeneric (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Specialized (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel.EventBasedAsync (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel.Primitives (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.ComponentModel (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.NonGeneric (>= 4.3) + System.Collections.Specialized (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ComponentModel.Primitives (>= 4.3) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Process (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.Thread (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Diagnostics.TraceSource (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Process (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Thread (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Diagnostics.TextWriterTraceListener (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.TraceSource (>= 4.3) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tools (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.TraceSource (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4022,13 +4093,20 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization.Extensions (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4037,9 +4115,9 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4050,48 +4128,73 @@ NUGET System.Numerics.Vectors (>= 4.4) - restriction: || (== net462) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (== net462) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) System.Net.Http.WinHttpHandler (4.5.4) - restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Buffers (>= 4.4) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) System.Memory (>= 4.5.1) - restriction: || (== net462) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Numerics.Vectors (4.5) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= netstandard2.0) (>= uap10.1)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Private.DataContractSerialization (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Serialization.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) + System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Extensions (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Metadata (1.6) - content: none System.Collections.Immutable (>= 1.5) - restriction: || (== net462) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (== netstandard2.0) - System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.1) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1) (>= netstandard2.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.TypeExtensions (4.5.1) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (4.5.1) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.ResourceManager (4.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (4.3.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (4.3.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid) (>= netstandard2.0)) (&& (== net462) (>= monotouch) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (< netstandard1.1) (>= netstandard2.0)) (&& (== net462) (>= netstandard2.0) (>= uap10.1)) (&& (== net462) (>= netstandard2.0) (>= wpa81)) (&& (== net462) (>= netstandard2.0) (>= xamarintvos)) (&& (== net462) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Runtime.Extensions (4.3.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid) (>= netstandard2.0)) (&& (== net462) (>= monotouch) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (< netstandard1.1) (>= netstandard2.0)) (&& (== net462) (>= netstandard2.0) (>= uap10.1)) (&& (== net462) (>= netstandard2.0) (>= wpa81)) (&& (== net462) (>= netstandard2.0) (>= xamarintvos)) (&& (== net462) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net462) (>= uap10.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netcoreapp2.1) (>= wp8)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) + System.Runtime.Extensions (4.3.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4099,7 +4202,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4108,14 +4211,14 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices.RuntimeInformation (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) - runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Loader (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Loader (4.3) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4124,6 +4227,13 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Serialization.Json (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.AccessControl (4.5) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid) (>= netstandard2.0)) (&& (== net462) (>= monotouch) (>= netstandard2.0)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= netstandard2.0) (>= xamarintvos)) (&& (== net462) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) System.Security.Principal.Windows (>= 4.5) System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4177,30 +4287,118 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.ProtectedData (4.5) - restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Memory (>= 4.5) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Principal.Windows (4.5.1) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid) (>= netstandard2.0)) (&& (== net462) (>= monotouch) (>= netstandard2.0)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= netstandard2.0) (>= xamarintvos)) (&& (== net462) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Text.Encoding (4.3) - content: none, restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (4.3) - content: none, restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (4.3.1) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime (>= 4.3.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (4.3) - content: none, restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (4.3) - content: none, restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Thread (4.3) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Tasks.Extensions (4.5.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (== net462) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (< netstandard1.0)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= wp8)) (== netstandard2.0) + System.Threading.Thread (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.ThreadPool (4.3) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.ValueTuple (4.5) - content: none, restriction: || (== net462) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netstandard2.0) (>= net461)) + System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XDocument (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlDocument (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlSerializer (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XPath (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) + System.Xml.XPath (>= 4.3) + YoloDev.Expecto.TestSdk (0.8) + Expecto (>= 8.10 < 9.0) - restriction: || (== net462) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + FSharp.Core (>= 4.3.4) - restriction: || (== net462) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Collections.Immutable (>= 1.4) - restriction: || (== net462) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.ValueTuple (>= 4.4) - restriction: || (== net462) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netstandard2.0) (>= net461)) GROUP TestAdapter NUGET diff --git a/src/app/Fake.Core.Process/CmdLineParsing.fs b/src/app/Fake.Core.Process/CmdLineParsing.fs index c19b0110d97..8a610be1dca 100644 --- a/src/app/Fake.Core.Process/CmdLineParsing.fs +++ b/src/app/Fake.Core.Process/CmdLineParsing.fs @@ -173,6 +173,43 @@ module Arguments = let append s (a:Arguments) = Arguments.OfArgs(Seq.append a.Args s) + /// Appends the given raw argument to the command line, you can not use other methods for this to work + /// This method is only required if you NEED quotes WITHIN your argument (some old Microsoft Tools). + /// "raw" methods are not compatible with non-raw methods. + let appendRaw s (a:Arguments) = + let cmd = a.ToStartInfo + let newCmd = if cmd.Length = 0 then s else cmd + " " + s + { Args = Array.append a.Args [|s|]; Original = Some newCmd } + + /// Appends the given raw argument to the command line, you can not use other methods for this to work + /// This allows unusal quoting with the given prefix, like /k:"myarg" ("/k:" would be the argPrefix) + /// This method is only required if you NEED quotes WITHIN your argument (some old Microsoft Tools). + /// "raw" methods are not compatible with non-raw methods. + let appendRawEscaped (argPrefix:string) paramValue (a:Arguments) = + if argPrefix.IndexOfAny([|' '; '\"'; '\\'; '\t'|]) >= 0 then + invalidArg "argPrefix" "Argument prefix cannot contain special characters" + a |> appendRaw (sprintf "%s%s" argPrefix (CmdLineParsing.windowsArgvToCommandLine false [paramValue])) + + /// Append an argument prefixed by another if the value is Some. + /// This method is only required if you NEED quotes WITHIN your argument (some old Microsoft Tools). + /// "raw" methods are not compatible with non-raw methods. + let appendRawEscapedIf b (argPrefix:string) (paramValue:string) (a:Arguments) = + if b then + a |> appendRawEscaped argPrefix paramValue + else a + /// Append an argument prefixed by another if the value is Some. + /// This method is only required if you NEED quotes WITHIN your argument (some old Microsoft Tools). + /// "raw" methods are not compatible with non-raw methods. + let appendRawEscapedOption (argPrefix:string) (paramValue:string option) (a:Arguments) = + match paramValue with + | Some x -> a |> appendRawEscaped argPrefix x + | None -> a + /// Append an argument prefixed by another if the value is Some. + /// This method is only required if you NEED quotes WITHIN your argument (some old Microsoft Tools). + /// "raw" methods are not compatible with non-raw methods. + let appendRawEscapedNotEmpty (argPrefix:string) (paramValue:string) (a:Arguments) = + appendRawEscapedIf (String.isNullOrEmpty paramValue |> not) argPrefix paramValue a + /// Append an argument prefixed by another if the value is Some. let appendOption (paramName:string) (paramValue:string option) (a:Arguments) = match paramValue with diff --git a/src/app/Fake.DotNet.ILMerge/Fake.DotNet.ILMerge.fsproj b/src/app/Fake.DotNet.ILMerge/Fake.DotNet.ILMerge.fsproj index 08f647efaae..23a9511bac9 100644 --- a/src/app/Fake.DotNet.ILMerge/Fake.DotNet.ILMerge.fsproj +++ b/src/app/Fake.DotNet.ILMerge/Fake.DotNet.ILMerge.fsproj @@ -13,7 +13,7 @@ 5 - true + FS2003 diff --git a/src/app/Fake.Testing.SonarQube/Fake.Testing.SonarQube.fsproj b/src/app/Fake.Testing.SonarQube/Fake.Testing.SonarQube.fsproj index b5634eb04b5..154721120fd 100644 --- a/src/app/Fake.Testing.SonarQube/Fake.Testing.SonarQube.fsproj +++ b/src/app/Fake.Testing.SonarQube/Fake.Testing.SonarQube.fsproj @@ -1,4 +1,4 @@ - + netstandard2.0;net462 $(DefineConstants);NO_DOTNETCORE_BOOTSTRAP @@ -13,6 +13,7 @@ + diff --git a/src/app/Fake.Testing.SonarQube/SonarQube.fs b/src/app/Fake.Testing.SonarQube/SonarQube.fs index 832af0fcf61..c0c725411eb 100644 --- a/src/app/Fake.Testing.SonarQube/SonarQube.fs +++ b/src/app/Fake.Testing.SonarQube/SonarQube.fs @@ -8,7 +8,7 @@ module Fake.Testing.SonarQube /// [omit] /// The supported commands of SonarQube. It is called with Begin before compilation, and End after compilation. - type private SonarQubeCall = Begin | End + type internal SonarQubeCall = Begin | End /// Parameter type to configure the SonarQube runner. type SonarQubeParams = { @@ -29,7 +29,7 @@ module Fake.Testing.SonarQube } /// SonarQube default parameters - tries to locate MSBuild.SonarQube.exe in any subfolder. - let SonarQubeDefaults = + let internal SonarQubeDefaults = { ToolsPath = Tools.findToolInSubPath "MSBuild.SonarQube.Runner.exe" (Directory.GetCurrentDirectory() @@ "tools" @@ "SonarQube") Organization = None Key = null @@ -40,54 +40,41 @@ module Fake.Testing.SonarQube /// [omit] /// Execute the external msbuild runner of SonarQube. Parameters are given to the command line tool as required. - let private SonarQubeCall (call: SonarQubeCall) (parameters : SonarQubeParams) = - let sonarPath = parameters.ToolsPath - let arg flag param = - let augmentedParam = @""+ param + @"" - (sprintf "/%s:%s" flag augmentedParam).Trim() - - let organisationArgument = - match parameters.Organization with - | None -> None - | Some (organization) -> Some (arg "o" organization) + let internal getSonarQubeCallParams (call: SonarQubeCall) (parameters : SonarQubeParams) = + let beginInitialArguments = + Arguments.Empty + |> Arguments.appendRaw "begin" + |> Arguments.appendRawEscapedNotEmpty "/k:" parameters.Key + |> Arguments.appendRawEscapedNotEmpty "/n:" parameters.Name + |> Arguments.appendRawEscapedNotEmpty "/v:" parameters.Version + |> Arguments.appendRawEscapedOption "/o:" parameters.Organization + |> Arguments.appendRawEscapedOption "/s:" parameters.Config + + let beginCall = + parameters.Settings + |> List.fold (fun arguments x -> arguments |> Arguments.appendRawEscaped "/d:" x) beginInitialArguments + + let endInitialArguments = + Arguments.Empty + |> Arguments.appendRaw "end" + |> Arguments.appendRawEscapedOption "/s:" parameters.Config + let endCall = + parameters.Settings + |> List.fold (fun arguments x -> arguments |> Arguments.appendRawEscaped "/d:" x) endInitialArguments - let configurationArgument = - match parameters.Config with - | None -> None - | Some x -> Some ( arg "s" x ) - - let beginInitialArguments = - Arguments.Empty - |> Arguments.appendIf true "begin" - |> Arguments.appendIf true (arg "k" parameters.Key) - |> Arguments.appendIf true (arg "n" parameters.Name) - |> Arguments.appendIf true (arg "v" parameters.Version) - |> Arguments.appendIf (organisationArgument.IsNone = false) organisationArgument.Value - |> Arguments.appendIf (configurationArgument.IsNone = false) configurationArgument.Value - - let beginCall = - parameters.Settings - |> List.fold (fun arguments x -> arguments |> Arguments.appendIf true (sprintf "/d:%s" x) ) beginInitialArguments - - let endInitialArguments = - Arguments.Empty - |> Arguments.appendIf true "end" - |> Arguments.appendIf (configurationArgument.IsNone = false) configurationArgument.Value - - let endCall = - parameters.Settings - |> List.fold (fun arguments x -> arguments |> Arguments.appendIf true (sprintf "/d:%s" x) ) endInitialArguments - - let args = match call with - | Begin -> beginCall.ToStartInfo - | End -> endCall.ToStartInfo - let result = - Process.execSimple ((fun info -> - { info with - FileName = sonarPath - Arguments = args }) >> Process.withFramework) System.TimeSpan.MaxValue - if result <> 0 then failwithf "Error during sonar qube call %s" (call.ToString()) + | Begin -> beginCall + | End -> endCall + + let private sonarQubeCall (call: SonarQubeCall) (parameters : SonarQubeParams) = + let sonarPath = parameters.ToolsPath + let result = + getSonarQubeCallParams call parameters + |> Arguments.toStartInfo + |> CreateProcess.fromRawCommandLine sonarPath + |> CreateProcess.withFramework + |> Proc.run + if result.ExitCode <> 0 then failwithf "Error during sonar qube call %s" (call.ToString()) /// This task to can be used to run the begin command of [Sonar Qube](http://sonarqube.org/) on a project. /// ## Parameters @@ -107,7 +94,7 @@ module Fake.Testing.SonarQube let start setParams = use __ = Trace.traceTask "SonarQube" "Begin" let parameters = setParams SonarQubeDefaults - SonarQubeCall Begin parameters + sonarQubeCall Begin parameters __.MarkSuccess() /// This task to can be used to run the end command of [Sonar Qube](http://sonarqube.org/) on a project. @@ -130,5 +117,5 @@ module Fake.Testing.SonarQube let parameters = match setParams with | Some setParams -> setParams SonarQubeDefaults | None -> (fun p -> { p with Settings = [] }) SonarQubeDefaults - SonarQubeCall End parameters + sonarQubeCall End parameters __.MarkSuccess() diff --git a/src/app/Fake.Testing.SonarQube/ThisAssemblyInfo.fs b/src/app/Fake.Testing.SonarQube/ThisAssemblyInfo.fs new file mode 100644 index 00000000000..e8cd9631ca6 --- /dev/null +++ b/src/app/Fake.Testing.SonarQube/ThisAssemblyInfo.fs @@ -0,0 +1,6 @@ +namespace System +open System.Runtime.CompilerServices + +[] +[] +do () diff --git a/src/test/Fake.Core.CommandLine.UnitTests/paket.references b/src/test/Fake.Core.CommandLine.UnitTests/paket.references index 460aa7bac06..fe27048c7d8 100644 --- a/src/test/Fake.Core.CommandLine.UnitTests/paket.references +++ b/src/test/Fake.Core.CommandLine.UnitTests/paket.references @@ -1,5 +1,7 @@ group netcorerunner +YoloDev.Expecto.TestSdk +Microsoft.TestPlatform.TestHost FSharp.Core NETStandard.Library Expecto diff --git a/src/test/Fake.Core.IntegrationTests/paket.references b/src/test/Fake.Core.IntegrationTests/paket.references index ca0521c3d2f..e74d5bd7fb4 100644 --- a/src/test/Fake.Core.IntegrationTests/paket.references +++ b/src/test/Fake.Core.IntegrationTests/paket.references @@ -1,5 +1,7 @@ group netcorerunner +YoloDev.Expecto.TestSdk +Microsoft.TestPlatform.TestHost FSharp.Core NETStandard.Library Expecto diff --git a/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj b/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj index 3a2ae74723e..0d425b6be99 100644 --- a/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj +++ b/src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj @@ -23,6 +23,7 @@ + @@ -44,6 +45,7 @@ + diff --git a/src/test/Fake.Core.UnitTests/Fake.Testing.SonarQube.fs b/src/test/Fake.Core.UnitTests/Fake.Testing.SonarQube.fs new file mode 100644 index 00000000000..1c0e05f0886 --- /dev/null +++ b/src/test/Fake.Core.UnitTests/Fake.Testing.SonarQube.fs @@ -0,0 +1,19 @@ +module Fake.Testing.SonarQubeTests + +open System.IO +open Fake.Core +open Fake.Testing +open Expecto + +[] +let tests = + testList "Fake.Testing.SonarQube.Tests" [ + testCase "Test that new argument generation with default parameters" <| fun _ -> + let cmd = + SonarQube.getSonarQubeCallParams SonarQube.Begin { SonarQube.SonarQubeDefaults with Organization = Some "test space" } + |> Arguments.toStartInfo + + Expect.equal cmd + (sprintf "begin /v:\"1.0\" /o:\"test space\"") "expected proper command line for sonarqube runner" + + ] diff --git a/src/test/Fake.Core.UnitTests/paket.references b/src/test/Fake.Core.UnitTests/paket.references index f259f8a3cf9..b9cf6725e60 100644 --- a/src/test/Fake.Core.UnitTests/paket.references +++ b/src/test/Fake.Core.UnitTests/paket.references @@ -1,5 +1,7 @@ group netcorerunner +YoloDev.Expecto.TestSdk +Microsoft.TestPlatform.TestHost Paket.Core FSharp.Core NETStandard.Library diff --git a/src/test/Fake.DotNet.Cli.IntegrationTests/paket.references b/src/test/Fake.DotNet.Cli.IntegrationTests/paket.references index e6657278040..91214817778 100644 --- a/src/test/Fake.DotNet.Cli.IntegrationTests/paket.references +++ b/src/test/Fake.DotNet.Cli.IntegrationTests/paket.references @@ -1,5 +1,7 @@ group netcorerunner +YoloDev.Expecto.TestSdk +Microsoft.TestPlatform.TestHost FSharp.Core NETStandard.Library Expecto From a881ac1b23dc8126a3ff8c5daf34164a868671fc Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 22:50:20 +0200 Subject: [PATCH 18/19] paket update and update runtime to 2.1.508 --- .circleci/config.yml | 2 +- .gitlab-ci.yml | 2 +- .travis.yml | 4 +- appveyor.yml | 2 +- global.json | 2 +- paket.dependencies | 3 +- paket.lock | 1110 ++++++++--------- src/legacy/FAKE/FAKE.fsproj | 2 +- src/legacy/FakeLib/FakeLib.fsproj | 36 +- src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj | 2 +- .../ProjectTestFiles/CSharpApp.csproj | 124 +- .../ProjectTestFiles/FakeLib.fsproj | 124 +- .../ProjectTestFiles/FakeLib2.csproj | 124 +- .../ProjectTestFiles/FakeLib2.fsproj | 124 +- .../ProjectTestFiles/FakeLib3.csproj | 124 +- .../ProjectTestFiles/FakeLib3.fsproj | 124 +- .../ProjectTestFiles/FakeLib4.fsproj | 124 +- .../ProjectTestFiles/FakeLib5.fsproj | 124 +- .../ProjectTestFiles/FakeLib6.fsproj | 124 +- src/legacy/Test.FAKECore/Test.FAKECore.csproj | 124 +- .../TestData/fake_no_template.csproj | 124 +- 21 files changed, 1061 insertions(+), 1468 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5f8383285fd..8c5ab48da76 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -32,7 +32,7 @@ jobs: command: | apt-get update apt-get install -y libunwind8 libicu52 unzip wget git - wget https://github.com/fsharp/FAKE/releases/download/5.15.1-alpha.1104/fake-dotnetcore-linux-x64.zip -O /tmp/fake-dotnetcore-linux-x64.zip + wget https://github.com/fsharp/FAKE/releases/download/5.16.0/fake-dotnetcore-linux-x64.zip -O /tmp/fake-dotnetcore-linux-x64.zip mkdir fake-dotnetcore unzip /tmp/fake-dotnetcore-linux-x64.zip -d fake-dotnetcore || echo unzip returned $? chmod +x $PWD/fake-dotnetcore/fake diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 945389091e8..7fe2ffe5857 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ do_build: - "echo 'Package: *\nPin: origin \"archive.debian.org\"\nPin-Priority: 500' | tee -a /etc/apt/preferences.d/10-archive-pin" - apt-get update - apt-get install -y libunwind8 libicu52 unzip wget git - - wget https://github.com/fsharp/FAKE/releases/download/5.15.1-alpha.1104/fake-dotnetcore-linux-x64.zip -O /tmp/fake-dotnetcore-linux-x64.zip + - wget https://github.com/fsharp/FAKE/releases/download/5.16.0/fake-dotnetcore-linux-x64.zip -O /tmp/fake-dotnetcore-linux-x64.zip - mkdir fake-dotnetcore - unzip -n /tmp/fake-dotnetcore-linux-x64.zip -d fake-dotnetcore || echo unzip returned $? - chmod +x $PWD/fake-dotnetcore/fake diff --git a/.travis.yml b/.travis.yml index 080112f7495..7da750011ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: csharp sudo: required dist: xenial # Ubuntu 16.04 -dotnet : 2.1.505 +dotnet : 2.1.508 addons: apt: @@ -19,7 +19,7 @@ before_install: #- sudo dpkg -i packages-microsoft-prod.deb #- sudo apt-get install apt-transport-https -y #- sudo apt-get update -y - #- sudo apt-get install dotnet-sdk-2.1=2.1.505* -y + #- sudo apt-get install dotnet-sdk-2.1=2.1.508* -y env: - FAKE_DETAILED_ERRORS=true HOME=/home/travis APPDATA=/home/travis LocalAppData=/home/travis diff --git a/appveyor.yml b/appveyor.yml index 6c4c1de104f..e02f3bac8ff 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,7 +5,7 @@ install: - ps: | Write-Host "Installing .NET SDK..." $msiPath = "$($env:USERPROFILE)\dotnet-SDK.exe" - (New-Object Net.WebClient).DownloadFile('https://download.visualstudio.microsoft.com/download/pr/4690d405-11c6-488e-b1ba-4f2e9b247b25/7c70d9003e02997b66d843ec54ba53d1/dotnet-sdk-2.1.505-win-x64.exe', $msiPath) + (New-Object Net.WebClient).DownloadFile('https://download.visualstudio.microsoft.com/download/pr/2f2d03ef-b000-46a2-abf5-8b863e438568/cddce0caa2526db658e0d21937f89b28/dotnet-sdk-2.1.508-win-x64.exe', $msiPath) cmd /c start /wait $msiPath /quiet /norestart Write-Host "Installed" -ForegroundColor green diff --git a/global.json b/global.json index d8d95a5b9fd..142f003170a 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk" : { - "version": "2.1.505" + "version": "2.1.508" } } diff --git a/paket.dependencies b/paket.dependencies index 1f381d2ec28..988dbe3e627 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -108,8 +108,7 @@ group NetcoreBuild // FAKE_MYGET_FEED (don't edit this line) storage: none - // 2018-07-08: Until we use a runner > 5.1, see https://github.com/fsharp/FAKE/pull/2011 - nuget FSharp.Core < 4.5 + nuget FSharp.Core nuget Suave nuget System.AppContext prerelease nuget Paket.Core // prerelease diff --git a/paket.lock b/paket.lock index f8a852deaf9..23ea8493a46 100644 --- a/paket.lock +++ b/paket.lock @@ -149,8 +149,8 @@ NUGET Microsoft.Extensions.PlatformAbstractions (1.1) - restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net452) (>= netstandard2.0)) NETStandard.Library (>= 1.6.1) - restriction: || (>= net451) (>= netstandard1.3) System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net451) (>= netstandard1.3) - Microsoft.NETCore.Platforms (2.1.2) - restriction: || (&& (>= monoandroid) (>= netstandard1.6) (< netstandard2.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (>= monotouch) (&& (>= net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0) (< wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= netcoreapp1.0) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - Microsoft.NETCore.Targets (1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (2.1.2) - restriction: || (&& (>= monoandroid) (>= netstandard1.6) (< netstandard2.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (>= monotouch) (&& (>= net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0) (< wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= netcoreapp1.0) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + Microsoft.NETCore.Targets (1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.SqlServer.Compact (4.0.8876.1) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) Microsoft.Web.Administration (7.0) Microsoft.Web.Infrastructure (1.0) @@ -164,15 +164,7 @@ NUGET System.Memory (>= 4.5) - restriction: || (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (>= uap10.1) System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - Mono.Cecil (0.10.4) - System.Collections (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.IO.FileSystem (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Reflection (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Threading (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) + Mono.Cecil (0.11) Mono.Web.Xdt (1.0) Nancy (2.0) Microsoft.Extensions.DependencyModel (>= 2.0.4) - restriction: && (< net452) (>= netstandard2.0) @@ -255,7 +247,7 @@ NUGET System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) - NLog (4.6.6) + NLog (4.6.7) Microsoft.Extensions.PlatformAbstractions (>= 1.0) - restriction: && (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5) NETStandard.Library (>= 1.6) - restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0)) System.ComponentModel.Primitives (>= 4.1) - restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0)) @@ -421,7 +413,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (>= netcoreapp1.0) System.Threading (>= 4.3) - restriction: >= netcoreapp1.0 System.Buffers (4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) - System.Collections (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) @@ -589,7 +581,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net461) (>= net463) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.IO (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net461) (>= net463) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) @@ -621,7 +613,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -630,7 +622,7 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.FileSystem.Watcher (4.3) - restriction: && (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -813,7 +805,7 @@ NUGET System.Reactive.WindowsRuntime (4.1.6) - restriction: >= uap10.0 System.Reactive (>= 4.1.6) - restriction: >= uap10.0 System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: >= uap10.0 - System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) @@ -841,7 +833,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Metadata (1.6) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5)) (>= net461) (>= netstandard2.0) System.Collections.Immutable (>= 1.5) - restriction: || (>= net45) (&& (< netcoreapp2.1) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) - System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -849,25 +841,25 @@ NUGET System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net461) (>= net463) (>= netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Runtime (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net461) (>= net463) (>= netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (< monoandroid) (< net40) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net45) (>= netstandard2.0)) (&& (>= net452) (>= netstandard2.0)) (>= net46) (>= netcoreapp2.0) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8)) (&& (>= netstandard2.0) (< xamarinios)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac)) - System.Runtime.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Runtime.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) @@ -915,7 +907,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.6) (>= uap10.0)) (>= netstandard2.0) + System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.6) (>= uap10.0)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -942,7 +934,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) + System.Security.Cryptography.Csp (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -956,7 +948,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net461) (&& (>= net463) (>= netstandard2.0)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net461) (&& (>= net463) (>= netstandard2.0)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -983,7 +975,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net461) (>= net463) (>= netstandard2.0)) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (>= uap10.0) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net20) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net461) (>= net463) (>= netstandard2.0)) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (>= uap10.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1025,7 +1017,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Security.Principal.Windows (4.5.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net40) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) @@ -1040,7 +1032,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Threading (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Overlapped (4.3) - restriction: && (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos) @@ -1048,7 +1040,7 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= netcoreapp1.0) System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= netcoreapp1.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= netcoreapp1.0) - System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win81) (< 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) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (< netcoreapp1.0) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win81) (< 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) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< wpa81)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) @@ -1173,7 +1165,7 @@ GROUP Build CONTENT: NONE NUGET remote: https://api.nuget.org/v3/index.json - FAKE (5.8.4) + FAKE (5.16) FSharp.Compiler.Service (27.0.1) FSharp.Core (>= 4.5.2) - restriction: || (>= net45) (>= netstandard2.0) System.Collections.Immutable (>= 1.5) - restriction: || (>= net45) (>= netstandard2.0) @@ -1853,7 +1845,7 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) GITHUB remote: fsharp/FAKE - modules/Octokit/Octokit.fsx (ceb1805bc258a624fd98f9bd9beebafa03452b7d) + modules/Octokit/Octokit.fsx (b588a7081be4a3793a310a5bb7ec5f2e89d8601b) Octokit (>= 0.20) GROUP DocsLegacyV4 NUGET @@ -1863,7 +1855,7 @@ NUGET GROUP DocsLegacyV5 NUGET remote: https://api.nuget.org/v3/index.json - FAKE (5.8.4) + FAKE (5.16) GROUP netcore STORAGE: NONE @@ -1947,19 +1939,11 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Win32.Registry (4.5) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Buffers (>= 4.4) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid)) (&& (== net462) (>= monotouch)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== net462) (>= xamarintvos)) (&& (== net462) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Memory (>= 4.5) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net462) (>= monoandroid)) (&& (== net462) (>= monotouch)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== net462) (>= xamarintvos)) (&& (== net462) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Security.AccessControl (>= 4.5) System.Security.Principal.Windows (>= 4.5) - Mono.Cecil (0.10.4) - System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Mono.Cecil (0.11) MSBuild.StructuredLogger (2.0.94) Microsoft.Build (>= 14.3) - restriction: || (== net462) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) Microsoft.Build (>= 15.8.166) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2063,7 +2047,7 @@ NUGET runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Buffers (4.5) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.CodeDom (4.5) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2082,9 +2066,9 @@ NUGET System.Data.SqlClient (4.6.1) Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Data.SqlClient.sni (>= 4.5) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Buffers (>= 4.4) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) - System.Memory (>= 4.5.1) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Memory (>= 4.5.1) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2094,36 +2078,36 @@ NUGET System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net451) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.FileVersionInfo (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Diagnostics.Process (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.Thread (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netstandard1.4)) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Thread (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Diagnostics.Tools (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2150,9 +2134,9 @@ NUGET System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.ObjectModel (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2181,8 +2165,8 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.Compression (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Buffers (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2206,7 +2190,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2215,25 +2199,25 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.FileSystem.Watcher (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.Overlapped (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) - System.Threading.Thread (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Overlapped (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Threading.Thread (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Linq (4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2301,7 +2285,7 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Net.Http.WinHttpHandler (4.5.4) - restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Buffers (>= 4.4) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) System.Memory (>= 4.5.1) - restriction: || (== net462) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Net.Primitives (4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2356,7 +2340,7 @@ NUGET System.Reactive.Windows.Threading (4.1.6) - restriction: || (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= uap10.0)) System.Reactive (>= 4.1.6) - restriction: || (== net462) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (== net462) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2408,7 +2392,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.CompilerServices.Unsafe (4.5.2) - System.Runtime.Extensions (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2425,12 +2409,12 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices.RuntimeInformation (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) - runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices.WindowsRuntime (4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2465,8 +2449,8 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Cng (4.5) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (== netstandard2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2494,7 +2478,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.OpenSsl (4.5.1) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 2.1.2) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (== netstandard2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 2.1.2) - restriction: || (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Cryptography.Primitives (4.3) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -2545,13 +2529,13 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.RegularExpressions (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) - System.Threading (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Overlapped (4.3) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (== netstandard2.0) @@ -2655,302 +2639,266 @@ NUGET FSharp.Core - restriction: < netstandard1.6 FSharp.Core (>= 4.0.1.7-alpha) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6) - restriction: >= netstandard1.6 - Fake.Api.GitHub (5.15.4) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Octokit (>= 0.32) - restriction: || (>= net46) (>= netstandard1.6) - Fake.BuildServer.AppVeyor (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Net.Http (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Net.Http (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - Fake.BuildServer.GitLab (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Net.Http (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.BuildServer.TeamCity (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Net.Http (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.BuildServer.TeamFoundation (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Vault (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Net.Http (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - Fake.BuildServer.Travis (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Net.Http (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.CommandLineParsing (5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FParsec (>= 1.0.3) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.Core.FakeVar (5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.FakeVar (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.ReleaseNotes (5.15.4) - Fake.Core.SemVer (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.Core.SemVer (5.15.4) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.Core.Target (5.15.4) - Fake.Core.CommandLineParsing (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Context (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.FakeVar (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Control.Reactive (>= 4.2) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Reactive.Compatibility (>= 4.1.5) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Tasks (5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.FakeVar (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.Core.Vault (5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Newtonsoft.Json (>= 12.0.2) - restriction: || (>= net46) (>= netstandard2.0) - System.Security.Cryptography.Algorithms (>= 4.3.1) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Xml (5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) - System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.AssemblyInfoFile (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.DotNet.Cli (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.MSBuild (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.NuGet (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Api.GitHub (5.16) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Octokit (>= 0.32) - restriction: || (>= net462) (>= netstandard2.0) + Fake.BuildServer.AppVeyor (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Net.Http (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.Process (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.BuildServer.GitLab (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.Process (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.BuildServer.TeamCity (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Xml (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Net.Http (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.Process (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.BuildServer.TeamFoundation (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Vault (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.Process (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.BuildServer.Travis (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.Process (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.CommandLineParsing (5.16) - restriction: || (>= net462) (>= netstandard2.0) + FParsec (>= 1.0.3) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Context (5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Environment (5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.FakeVar (5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Context (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.FakeVar (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.Process (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.ReleaseNotes (5.16) + Fake.Core.SemVer (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.SemVer (5.16) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Target (5.16) + Fake.Core.CommandLineParsing (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Context (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.FakeVar (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Control.Reactive (>= 4.2) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Reactive.Compatibility (>= 4.1.6) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Tasks (5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.FakeVar (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Vault (5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Newtonsoft.Json (>= 12.0.2) - restriction: || (>= net462) (>= netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3.1) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Xml (5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) + System.Xml.XPath (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.AssemblyInfoFile (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.Cli (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.MsBuild (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.NuGet (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) Newtonsoft.Json (>= 12.0.2) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.FSFormatting (5.15.4) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.DotNet.MSBuild (5.15.4) + Fake.DotNet.FSFormatting (5.16) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.MsBuild (5.16) BlackFox.VsWhere (>= 1.0) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) MSBuild.StructuredLogger (>= 2.0.94) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.NuGet (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.SemVer (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Tasks (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Xml (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Net.Http (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Newtonsoft.Json (>= 12.0.2) - restriction: || (>= net46) (>= netstandard2.0) - NuGet.Protocol (>= 4.9.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Net.Http (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.DotNet.Paket (5.15.4) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.DotNet.Testing.MSpec (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Testing.Common (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.DotNet.Testing.NUnit (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Testing.Common (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - System.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard2.0) - Fake.DotNet.Testing.XUnit2 (5.15.4) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Testing.Common (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (5.15.4) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.Zip (5.15.4) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.IO.Compression (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - System.Net.Http (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Tools.Git (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.SemVer (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Windows.Chocolatey (5.15.4) - Fake.Core.Environment (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Process (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.String (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.Core.Trace (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.DotNet.NuGet (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.15.4) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard2.0) - FParsec (1.0.3) - restriction: || (>= net46) (>= netstandard2.0) + Fake.DotNet.NuGet (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.SemVer (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Tasks (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Xml (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Net.Http (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Newtonsoft.Json (>= 12.0.2) - restriction: || (>= net462) (>= netstandard2.0) + NuGet.Protocol (>= 4.9.4) - restriction: || (>= net462) (>= netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.Paket (5.16) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.Testing.MSpec (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Testing.Common (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.Testing.NUnit (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Testing.Common (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Linq.Parallel (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) + Fake.DotNet.Testing.XUnit2 (5.16) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Testing.Common (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (5.16) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.Zip (5.16) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.Compression (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Net.Http (5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Testing.Common (5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Tools.Git (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.SemVer (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Windows.Chocolatey (5.16) + Fake.Core.Environment (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Process (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.String (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.Core.Trace (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.DotNet.NuGet (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + Fake.IO.FileSystem (>= 5.16) - restriction: || (>= net462) (>= netstandard2.0) + FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) + FParsec (1.0.3) - restriction: || (>= net462) (>= netstandard2.0) FSharp.Core (>= 4.0.0.1) - restriction: >= net40 FSharp.Core (>= 4.2.3) - restriction: && (< net40) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< net40) (>= netstandard1.6) FSharp.Compiler.Tools (10.2.3) - restriction: >= net45 - FSharp.Control.Reactive (4.2) - restriction: || (>= net46) (>= netstandard2.0) + FSharp.Control.Reactive (4.2) - restriction: || (>= net462) (>= netstandard2.0) FSharp.Core (>= 4.2.3) - restriction: || (>= net46) (>= netstandard2.0) System.Reactive (>= 4.0) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (4.3.4) - System.Collections (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Console (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Globalization (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.IO (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Linq (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Linq.Expressions (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Linq.Queryable (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Net.Requests (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Reflection (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Resources.ResourceManager (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Runtime (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Runtime.Numerics (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Text.RegularExpressions (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Threading (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Threading.Tasks (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Threading.Thread (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Threading.Timer (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + FSharp.Core (4.7) Microsoft.Build (16.0.461) - restriction: || (>= net462) (>= netstandard2.0) Microsoft.Build.Framework (>= 16.0.461) - restriction: || (>= net472) (>= netcoreapp2.1) Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472 @@ -2991,27 +2939,19 @@ NUGET NETStandard.Library (>= 1.6.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (>= netcoreapp1.0) (< netstandard2.0)) System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (>= netcoreapp1.0) (< netstandard2.0)) System.Reflection.TypeExtensions (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netstandard2.0)) - Microsoft.NETCore.Platforms (2.2.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (>= net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netcoreapp2.0)) (&& (< net46) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netcoreapp2.0) (< netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< netstandard1.1) (>= netstandard1.6) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< win8) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= wp8)) - Microsoft.NETCore.Targets (2.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< net45) (>= net46)) (>= netcoreapp1.0) (&& (< netstandard1.1) (>= netstandard1.6) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + Microsoft.NETCore.Platforms (2.2.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp2.0)) (>= netcoreapp1.0) (&& (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= netcoreapp2.0) (< netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0)) (>= wp8) + Microsoft.NETCore.Targets (2.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< 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) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< 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.3) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (>= netcoreapp1.0) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< win81) (< wpa81)) Microsoft.VisualStudio.Setup.Configuration.Interop (1.16.30) - restriction: >= net472 - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (4.5) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) + Microsoft.Win32.Registry (4.5) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) System.Buffers (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) System.Memory (>= 4.5) - restriction: || (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (>= uap10.1) System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - Mono.Cecil (0.10.4) - System.Collections (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.IO.FileSystem (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Reflection (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) - System.Threading (>= 4.3) - restriction: && (< net35) (>= netstandard1.3) + Mono.Cecil (0.11) MSBuild.StructuredLogger (2.0.94) - restriction: || (>= net462) (>= netstandard2.0) Microsoft.Build (>= 14.3) - restriction: >= net46 Microsoft.Build (>= 15.8.166) - restriction: && (< net46) (>= netstandard2.0) @@ -3021,7 +2961,7 @@ NUGET Microsoft.Build.Tasks.Core (>= 15.8.166) - restriction: && (< net46) (>= netstandard2.0) Microsoft.Build.Utilities.Core (>= 14.3) - restriction: >= net46 Microsoft.Build.Utilities.Core (>= 15.8.166) - restriction: && (< net46) (>= netstandard2.0) - NETStandard.Library (2.0.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net40) (>= net46) (>= netstandard1.6)) (&& (>= net45) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1)) (&& (< net46) (>= netstandard1.6)) (>= netcoreapp1.0) (>= netstandard2.0) + NETStandard.Library (2.0.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net40) (>= net462) (>= netstandard1.6)) (&& (>= net45) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1)) (>= netcoreapp1.0) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8) Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) @@ -3086,7 +3026,7 @@ NUGET NuGet.Configuration (>= 5.2) - restriction: >= netstandard2.0 NuGet.Versioning (>= 5.2) - restriction: >= netstandard2.0 System.Dynamic.Runtime (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - NuGet.Protocol (5.2) - restriction: || (>= net46) (>= netstandard2.0) + NuGet.Protocol (5.2) - restriction: || (>= net462) (>= netstandard2.0) NuGet.Packaging (>= 5.2) - restriction: >= netstandard2.0 System.Dynamic.Runtime (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) NuGet.Versioning (5.2) - restriction: >= netstandard2.0 @@ -3101,24 +3041,24 @@ NUGET Newtonsoft.Json (>= 10.0.3) - restriction: && (< net45) (>= netstandard2.0) System.Net.Http.WinHttpHandler (>= 4.5) - restriction: && (< net45) (>= netstandard2.0) System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: && (< net45) (>= netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< net45) (>= net46)) (>= netcoreapp2.1) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (>= netcoreapp2.1) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.IO.Compression (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (>= netcoreapp1.0) + runtime.native.System.IO.Compression (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462) (>= netstandard1.6)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) @@ -3134,16 +3074,16 @@ NUGET runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462) (>= netstandard1.6)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) Suave (2.5.5) FSharp.Core (>= 4.3.4 < 5.0) - restriction: || (>= net461) (>= netstandard2.0) System.AppContext (4.3) @@ -3151,13 +3091,13 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: >= netcoreapp1.0 System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (>= netcoreapp1.0) System.Threading (>= 4.3) - restriction: >= netcoreapp1.0 - System.Buffers (4.5) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net46)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) + System.Buffers (4.5) - restriction: || (&& (>= monoandroid) (>= net462) (< netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= monotouch) (>= net462)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net462)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= net462) (>= xamarinios)) (&& (>= net462) (>= xamarinmac)) (&& (>= net462) (>= xamarintvos)) (&& (>= net462) (>= xamarinwatchos)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) System.CodeDom (4.5) - restriction: && (< net472) (>= netstandard2.0) - System.Collections (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Collections (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (>= netcoreapp1.0) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Collections.Concurrent (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Collections.Concurrent (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3168,7 +3108,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Collections.Immutable (1.5) - restriction: || (&& (>= net46) (>= netcoreapp1.0)) (>= netstandard2.0) + System.Collections.Immutable (1.5) - restriction: || (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= net462) (< netstandard1.1)) (&& (>= net462) (>= wpa81)) (>= netstandard2.0) System.Collections.NonGeneric (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3184,7 +3124,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (>= net462) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) System.ComponentModel.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (< netstandard2.0) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) System.ComponentModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3206,18 +3146,18 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) - System.Console (4.3.1) - restriction: || (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Console (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (>= netcoreapp2.1) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) - System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) + System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net462) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) @@ -3227,7 +3167,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Process (4.3) - restriction: || (>= net46) (&& (< net472) (>= netstandard2.0)) (>= netstandard1.6) + System.Diagnostics.Process (4.3) - restriction: || (>= net462) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3249,7 +3189,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Diagnostics.Tools (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3263,11 +3203,11 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Dynamic.Runtime (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net472) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Dynamic.Runtime (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (>= net462) (>= uap10.0)) (&& (< net472) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Globalization (>= 4.3) - restriction: >= netcoreapp1.0 @@ -3283,29 +3223,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) - System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (>= netcoreapp1.0) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Globalization.Calendars (4.3) - restriction: || (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Globalization.Calendars (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.IO (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (>= net463) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.IO.Compression (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (>= net462) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard2.0) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) @@ -3321,7 +3261,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (>= netcoreapp1.0) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) - System.IO.Compression.ZipFile (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (>= net462) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard2.0) (&& (>= uap10.0) (< uap10.1)) System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3331,7 +3271,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net46) (>= net462)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3340,9 +3280,9 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net20) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard2.0) (>= uap10.0)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Watcher (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.IO.FileSystem.Watcher (4.3) - restriction: || (>= net462) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3359,13 +3299,13 @@ NUGET System.Threading.Overlapped (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (< netcoreapp1.0) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Linq (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3383,7 +3323,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq.Parallel (4.3) - restriction: || (>= net46) (>= netstandard2.0) + System.Linq.Parallel (4.3) - restriction: || (>= net462) (>= netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (>= netcoreapp1.0) System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (>= netcoreapp1.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) @@ -3394,20 +3334,12 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (>= netcoreapp1.0) - System.Linq.Queryable (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Memory (4.5.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios)) (&& (< netcoreapp1.0) (>= netcoreapp2.0)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netstandard2.0) (>= uap10.1)) + System.Linq.Queryable (4.3) - restriction: || (&& (>= net462) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Memory (4.5.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios)) (&& (< net46) (>= net462) (>= netstandard2.0)) (&& (>= net462) (>= netcoreapp2.0)) (&& (>= net462) (>= uap10.1)) (&& (< netcoreapp1.0) (>= netcoreapp2.0)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netstandard2.0) (>= uap10.1)) System.Buffers (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net461) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Net.Http (4.3.4) - restriction: || (>= net46) (&& (< net472) (>= netstandard2.0)) (>= netstandard1.6) + System.Net.Http (4.3.4) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (>= net462) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard2.0) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3437,52 +3369,33 @@ NUGET System.Net.Http.WinHttpHandler (4.5.4) - restriction: && (< net45) (>= netstandard2.0) System.Buffers (>= 4.4) - restriction: && (< net46) (< netcoreapp2.0) (>= netstandard2.0) System.Memory (>= 4.5.1) - restriction: || (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (>= uap10.1) - System.Net.Primitives (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Net.Primitives (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.Requests (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) - System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) - System.Net.WebHeaderCollection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Net.Sockets (4.3) - restriction: || (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.WebHeaderCollection (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Numerics.Vectors (4.5) - restriction: || (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1)) - System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reactive (4.1.6) - restriction: || (>= net46) (>= netstandard2.0) + System.Reactive (4.1.6) - restriction: || (>= net462) (>= netstandard2.0) System.ComponentModel (>= 4.0.1) - restriction: && (>= uap10.0) (< uap10.1) System.Dynamic.Runtime (>= 4.0.11) - restriction: && (>= uap10.0) (< uap10.1) System.Linq.Queryable (>= 4.0.1) - restriction: && (>= uap10.0) (< uap10.1) System.Runtime.InteropServices.WindowsRuntime (>= 4.3) - restriction: && (< net46) (>= netstandard2.0) (< uap10.0) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) System.ValueTuple (>= 4.5) - restriction: || (>= net46) (&& (>= uap10.0) (< uap10.1)) - System.Reactive.Compatibility (4.1.6) - restriction: || (>= net46) (>= netstandard2.0) + System.Reactive.Compatibility (4.1.6) - restriction: || (>= net462) (>= netstandard2.0) System.Reactive.Core (>= 4.1.6) - restriction: || (>= net45) (>= netstandard1.3) System.Reactive.Experimental (>= 4.1.6) - restriction: >= net45 System.Reactive.Interfaces (>= 4.1.6) - restriction: || (>= net45) (>= netstandard1.3) @@ -3493,73 +3406,73 @@ NUGET System.Reactive.Windows.Forms (>= 4.1.6) - restriction: >= net45 System.Reactive.Windows.Threading (>= 4.1.6) - restriction: || (>= net45) (>= uap10.0) System.Reactive.WindowsRuntime (>= 4.1.6) - restriction: >= uap10.0 - System.Reactive.Core (4.1.6) - restriction: || (>= net46) (>= netstandard2.0) + System.Reactive.Core (4.1.6) - restriction: || (>= net462) (>= netstandard2.0) System.Reactive (>= 4.1.6) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Experimental (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net46) + System.Reactive.Experimental (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) System.Reactive (>= 4.1.6) - restriction: >= net46 System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: >= net46 - System.Reactive.Interfaces (4.1.6) - restriction: || (>= net46) (>= netstandard2.0) + System.Reactive.Interfaces (4.1.6) - restriction: || (>= net462) (>= netstandard2.0) System.Reactive (>= 4.1.6) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Linq (4.1.6) - restriction: || (>= net46) (>= netstandard2.0) + System.Reactive.Linq (4.1.6) - restriction: || (>= net462) (>= netstandard2.0) System.Reactive (>= 4.1.6) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.PlatformServices (4.1.6) - restriction: || (>= net46) (>= netstandard2.0) + System.Reactive.PlatformServices (4.1.6) - restriction: || (>= net462) (>= netstandard2.0) System.Reactive (>= 4.1.6) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Providers (4.1.6) - restriction: || (>= net46) (>= netstandard2.0) + System.Reactive.Providers (4.1.6) - restriction: || (>= net462) (>= netstandard2.0) System.Reactive (>= 4.1.6) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Runtime.Remoting (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net46) + System.Reactive.Runtime.Remoting (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) System.Reactive (>= 4.1.6) - restriction: >= net46 System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: >= net46 - System.Reactive.Windows.Forms (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net46) + System.Reactive.Windows.Forms (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) System.Reactive (>= 4.1.6) - restriction: >= net46 System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: >= net46 - System.Reactive.Windows.Threading (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net46) (&& (>= netstandard2.0) (>= uap10.0)) + System.Reactive.Windows.Threading (4.1.6) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) (&& (>= netstandard2.0) (>= uap10.0)) System.Reactive (>= 4.1.6) - restriction: || (>= net46) (>= uap10.0) System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (>= net46) (>= uap10.0) - System.Reactive.WindowsRuntime (4.1.6) - restriction: || (&& (>= net46) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Reactive.WindowsRuntime (4.1.6) - restriction: || (&& (>= net462) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) System.Reactive (>= 4.1.6) - restriction: >= uap10.0 System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: >= uap10.0 - System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Reflection.Emit (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netstandard1.3)) + System.Reflection.Emit (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.0) (< netstandard1.3)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.Lightweight (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Reflection.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.0)) (&& (>= netcoreapp1.0) (< netstandard1.2)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard1.4)) (&& (>= netcoreapp1.0) (< netstandard1.5)) (&& (>= netcoreapp1.0) (< netstandard1.6)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Metadata (1.6) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netcoreapp1.0)) (&& (< net472) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (>= netcoreapp2.1) + System.Reflection.Metadata (1.6) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (< net472) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (>= netcoreapp2.1) System.Collections.Immutable (>= 1.5) - restriction: || (>= net45) (&& (< netcoreapp2.1) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) - System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net472) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (>= netcoreapp2.1) + System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net472) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (>= netcoreapp2.1) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (>= netcoreapp1.0) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3572,26 +3485,26 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (>= net463) (>= netcoreapp1.0) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< win81) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard2.0) (>= wpa81)) (&& (>= net46) (>= wp8)) (&& (>= net461) (< netstandard1.1) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (>= netcoreapp2.0) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard1.1) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (>= netcoreapp2.0) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (&& (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (>= netcoreapp2.1) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (>= netcoreapp1.0) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (>= net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6) (< win8) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netcoreapp1.0 runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) @@ -3600,13 +3513,13 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.0) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) - System.Runtime.InteropServices.WindowsRuntime (4.3) - restriction: && (< net46) (>= netstandard2.0) (< uap10.0) + System.Runtime.InteropServices.WindowsRuntime (4.3) - restriction: || (&& (< net46) (>= net462) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< uap10.0)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Runtime.Loader (4.3) - restriction: >= netcoreapp2.1 System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Runtime.Numerics (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (>= net462) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (>= netstandard2.0) (&& (>= uap10.0) (< uap10.1)) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) @@ -3620,9 +3533,9 @@ NUGET System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< net20) (>= net46) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) (&& (< net472) (>= netstandard2.0)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) - System.Security.AccessControl (4.5) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (< netcoreapp1.0) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) + System.Security.AccessControl (4.5) - restriction: || (&& (>= monoandroid) (>= net462) (< netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= monotouch) (>= net462)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp2.0)) (&& (>= net462) (>= xamarinios)) (&& (>= net462) (>= xamarinmac)) (&& (>= net462) (>= xamarintvos)) (&& (>= net462) (>= xamarinwatchos)) (&& (< netcoreapp1.0) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) - System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< win8) (< wpa81)) (>= net46) (&& (>= netstandard1.6) (>= uap10.0)) (>= netstandard2.0) + System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.4)) (&& (< net20) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= net461) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= net461) (>= uap10.0)) (>= net462) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (>= netstandard2.0) (&& (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3637,7 +3550,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Cng (4.5) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Cng (4.5) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) @@ -3648,7 +3561,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3662,7 +3575,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.4)) (&& (< net20) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462) (>= netstandard1.6)) (&& (>= net461) (< netstandard2.0) (>= uap10.0)) (>= net463) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard1.6) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3675,9 +3588,9 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.5.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.OpenSsl (4.5.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 2.1.2) - restriction: && (>= netcoreapp2.0) (< netcoreapp2.1) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461) (< netstandard1.6)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= net462) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net462) (< netstandard1.4)) (&& (>= net462) (< netstandard1.6)) (>= net463) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3687,7 +3600,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.5) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (< net472) (>= netstandard2.0)) System.Memory (>= 4.5) - restriction: && (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) - System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (>= net46) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard2.0)) (>= net462) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3713,61 +3626,52 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Principal.Windows (4.5.1) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (< netcoreapp1.0) (>= netcoreapp2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) - System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Security.Principal.Windows (4.5.1) - restriction: || (&& (>= monoandroid) (>= net462) (< netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= monotouch) (>= net462)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp2.0)) (&& (>= net462) (>= xamarinios)) (&& (>= net462) (>= xamarinmac)) (&& (>= net462) (>= xamarintvos)) (&& (>= net462) (>= xamarinwatchos)) (&& (< netcoreapp1.0) (>= netcoreapp2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) + System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Text.Encoding.CodePages (4.5.1) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) Microsoft.NETCore.Platforms (>= 2.1.2) - restriction: >= netcoreapp2.0 System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (&& (< net46) (>= netstandard2.0) (< xamarinios)) (>= net461) (>= netcoreapp2.0) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) - System.Text.RegularExpressions (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Text.RegularExpressions (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Runtime.Extensions (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Threading (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (>= netcoreapp1.0) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Threading.Overlapped (4.3) - restriction: && (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) + System.Threading.Overlapped (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= netcoreapp1.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= netcoreapp1.0) System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= netcoreapp1.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= netcoreapp1.0) - System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp1.0) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net46) (>= net462)) (>= netcoreapp1.0) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) (&& (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks.Dataflow (4.9) - restriction: >= netstandard2.0 - System.Threading.Tasks.Extensions (4.5.3) - restriction: || (>= net46) (>= netstandard2.0) + System.Threading.Tasks.Extensions (4.5.3) - restriction: || (>= net462) (>= netstandard2.0) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (>= net45) (&& (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= wp8) - System.Threading.Tasks.Parallel (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Threading.Thread (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net472) (>= netstandard2.0)) + System.Threading.Thread (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) (&& (< net472) (>= netstandard2.0)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) + System.Threading.ThreadPool (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp1.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Timer (4.3) - restriction: || (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) + System.Threading.Timer (4.3) - restriction: || (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ValueTuple (4.5) - restriction: || (>= net46) (&& (>= netstandard2.0) (>= uap10.0)) - System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net46) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (>= netstandard1.6) + System.ValueTuple (4.5) - restriction: || (&& (>= net46) (>= netstandard2.0)) (>= net462) (&& (>= netstandard2.0) (>= uap10.0)) + System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (< net462) (>= netstandard2.0)) (&& (>= netcoreapp1.0) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) @@ -3783,7 +3687,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) - System.Xml.XDocument (4.3) - restriction: || (&& (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (< net462) (>= netstandard2.0)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard2.0) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) @@ -3796,7 +3700,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.0) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (>= netcoreapp1.0) - System.Xml.XmlDocument (4.3) - restriction: || (&& (< monoandroid) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) (>= net46) (>= netstandard1.6) + System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= net462) (>= netstandard2.0) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3807,7 +3711,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath (4.3) - restriction: || (&& (< monoandroid) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net46) (>= netstandard1.6) + System.Xml.XPath (4.3) - restriction: || (>= net462) (>= netstandard2.0) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3817,7 +3721,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath.XDocument (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Xml.XPath.XDocument (4.3) - restriction: || (>= net462) (>= netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3827,7 +3731,7 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XDocument (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (>= net462) (>= netstandard2.0) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3887,7 +3791,7 @@ NUGET System.Runtime.InteropServices.RuntimeInformation (>= 4.0) Microsoft.NETCore.App (2.2.6) - restriction: || (&& (== net462) (== netcoreapp1.1)) (&& (== net462) (== netstandard1.6)) (&& (== netcoreapp1.1) (== netcoreapp2.0)) (&& (== netcoreapp1.1) (== netcoreapp2.1)) (&& (== netcoreapp2.0) (== netstandard1.6)) (&& (== netcoreapp2.1) (== netstandard1.6)) (== netstandard2.0) Microsoft.NETCore.Platforms (2.2.2) - Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.TestPlatform.ObjectModel (16.2) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) NETStandard.Library (>= 1.6) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: || (&& (== net462) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -3915,15 +3819,7 @@ NUGET System.Memory (>= 4.5) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Security.AccessControl (>= 4.5) System.Security.Principal.Windows (>= 4.5) - Mono.Cecil (0.10.4) - System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Mono.Cecil (0.11) NETStandard.Library (2.0.3) Microsoft.NETCore.Platforms (>= 1.1) Newtonsoft.Json (12.0.2) @@ -3937,18 +3833,18 @@ NUGET Newtonsoft.Json (>= 10.0.3) - restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Net.Http.WinHttpHandler (>= 4.5) - restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System (4.3.1) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) @@ -3964,27 +3860,27 @@ NUGET runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.AppContext (4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) System.Buffers (4.5) - restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) - System.Collections (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections.Concurrent (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Concurrent (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4085,7 +3981,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4106,7 +4002,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4115,9 +4011,9 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (4.3) - content: none, restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4156,7 +4052,7 @@ NUGET System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (4.3) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4184,25 +4080,25 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.TypeExtensions (4.5.1) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (4.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (4.3.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (4.3.1) - content: none, restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp1.1)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid) (>= netstandard2.0)) (&& (== net462) (>= monotouch) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (< netstandard1.1) (>= netstandard2.0)) (&& (== net462) (>= netstandard2.0) (>= uap10.1)) (&& (== net462) (>= netstandard2.0) (>= wpa81)) (&& (== net462) (>= netstandard2.0) (>= xamarintvos)) (&& (== net462) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net462) (>= uap10.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netcoreapp2.1) (>= wp8)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Runtime.Extensions (4.3.1) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (4.3.1) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (4.3) - content: none, restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4222,7 +4118,7 @@ NUGET System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Numerics (4.3) - restriction: || (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Numerics (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4236,7 +4132,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.AccessControl (4.5) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid) (>= netstandard2.0)) (&& (== net462) (>= monotouch) (>= netstandard2.0)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= netstandard2.0) (>= xamarintvos)) (&& (== net462) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) System.Security.Principal.Windows (>= 4.5) - System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.Cryptography.Algorithms (4.3.1) - content: none, restriction: || (&& (== net462) (< net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4251,21 +4147,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (&& (== net462) (>= net463)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (== net462) (< net35) (>= net463)) (&& (== net462) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.Cryptography.Encoding (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (< net461) (>= net463) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4278,7 +4160,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net462) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (< net461) (>= netstandard2.0)) (&& (== net462) (< netstandard1.4) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4289,7 +4171,7 @@ NUGET System.Security.Cryptography.ProtectedData (4.5) - restriction: || (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Memory (>= 4.5) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Principal.Windows (4.5.1) - content: none, restriction: || (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.1)) (&& (== net462) (>= monoandroid) (>= netstandard2.0)) (&& (== net462) (>= monotouch) (>= netstandard2.0)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= netstandard2.0) (>= xamarintvos)) (&& (== net462) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netcoreapp1.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp1.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Text.Encoding (4.3) - content: none, restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (4.3) - content: none, restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -4300,10 +4182,10 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.RegularExpressions (4.3.1) - restriction: || (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) System.Runtime (>= 4.3.1) - restriction: || (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (4.3) - restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (4.3) - restriction: || (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (4.3) - content: none, restriction: || (&& (== net462) (< net35)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (&& (== net462) (>= uap10.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (4.3) - content: none, restriction: || (&& (== net462) (< net45)) (&& (== net462) (< net46) (>= netstandard2.0)) (&& (== net462) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) diff --git a/src/legacy/FAKE/FAKE.fsproj b/src/legacy/FAKE/FAKE.fsproj index 99a795326cf..90050897ce0 100644 --- a/src/legacy/FAKE/FAKE.fsproj +++ b/src/legacy/FAKE/FAKE.fsproj @@ -1211,7 +1211,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll diff --git a/src/legacy/FakeLib/FakeLib.fsproj b/src/legacy/FakeLib/FakeLib.fsproj index 0f0059e6193..230fdfb2df5 100644 --- a/src/legacy/FakeLib/FakeLib.fsproj +++ b/src/legacy/FakeLib/FakeLib.fsproj @@ -915,30 +915,6 @@ - - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -963,25 +939,25 @@ - + - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -2912,7 +2888,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll diff --git a/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj b/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj index 319f1527566..01e12ba9c29 100644 --- a/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj +++ b/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj @@ -1172,7 +1172,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj b/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj index 6a66b6663a0..0e42c26a74f 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj @@ -186,30 +186,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -234,25 +210,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -353,7 +329,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -362,7 +338,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -382,7 +358,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -404,7 +380,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -437,7 +413,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -446,7 +422,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -457,7 +433,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -466,7 +442,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -499,7 +475,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -508,7 +484,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -517,7 +493,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -559,7 +535,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -579,7 +555,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -590,7 +566,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -608,7 +584,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -717,7 +693,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -726,7 +702,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -735,7 +711,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -817,7 +793,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -893,7 +869,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -904,7 +880,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -913,7 +889,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -922,7 +898,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -931,7 +907,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -980,7 +956,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -989,7 +965,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -998,7 +974,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1009,7 +985,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1020,7 +996,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1029,7 +1005,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1038,7 +1014,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1087,7 +1063,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1134,7 +1110,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1143,7 +1119,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1152,7 +1128,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1224,11 +1200,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1248,7 +1224,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1333,7 +1309,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1382,7 +1358,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1391,7 +1367,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1451,7 +1427,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1469,7 +1445,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1480,7 +1456,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1489,7 +1465,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj index c2323fa5560..16d8dad85be 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj @@ -271,30 +271,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -319,25 +295,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -438,7 +414,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -447,7 +423,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -467,7 +443,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -489,7 +465,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -522,7 +498,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -531,7 +507,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -542,7 +518,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -551,7 +527,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -584,7 +560,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -593,7 +569,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -602,7 +578,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -644,7 +620,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -664,7 +640,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -675,7 +651,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -693,7 +669,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -853,7 +829,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -862,7 +838,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -871,7 +847,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -953,7 +929,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1029,7 +1005,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1040,7 +1016,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1049,7 +1025,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1058,7 +1034,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1067,7 +1043,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1116,7 +1092,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1125,7 +1101,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1134,7 +1110,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1145,7 +1121,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1156,7 +1132,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1165,7 +1141,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1174,7 +1150,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1223,7 +1199,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1270,7 +1246,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1279,7 +1255,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1288,7 +1264,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1360,11 +1336,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1384,7 +1360,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1469,7 +1445,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1518,7 +1494,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1527,7 +1503,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1587,7 +1563,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1605,7 +1581,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1616,7 +1592,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1625,7 +1601,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj index 474c6315cd2..bfc46548afe 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj @@ -270,30 +270,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -318,25 +294,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -437,7 +413,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -446,7 +422,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -466,7 +442,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -488,7 +464,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -521,7 +497,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -530,7 +506,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -541,7 +517,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -550,7 +526,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -583,7 +559,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -592,7 +568,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -601,7 +577,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -643,7 +619,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -663,7 +639,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -674,7 +650,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -692,7 +668,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -852,7 +828,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -861,7 +837,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -870,7 +846,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -952,7 +928,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1028,7 +1004,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1039,7 +1015,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1048,7 +1024,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1057,7 +1033,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1066,7 +1042,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1115,7 +1091,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1124,7 +1100,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1133,7 +1109,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1144,7 +1120,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1155,7 +1131,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1164,7 +1140,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1173,7 +1149,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1222,7 +1198,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1269,7 +1245,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1278,7 +1254,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1287,7 +1263,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1359,11 +1335,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1383,7 +1359,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1468,7 +1444,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1517,7 +1493,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1526,7 +1502,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1586,7 +1562,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1604,7 +1580,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1615,7 +1591,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1624,7 +1600,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj index 474c6315cd2..bfc46548afe 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj @@ -270,30 +270,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -318,25 +294,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -437,7 +413,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -446,7 +422,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -466,7 +442,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -488,7 +464,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -521,7 +497,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -530,7 +506,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -541,7 +517,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -550,7 +526,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -583,7 +559,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -592,7 +568,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -601,7 +577,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -643,7 +619,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -663,7 +639,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -674,7 +650,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -692,7 +668,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -852,7 +828,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -861,7 +837,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -870,7 +846,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -952,7 +928,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1028,7 +1004,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1039,7 +1015,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1048,7 +1024,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1057,7 +1033,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1066,7 +1042,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1115,7 +1091,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1124,7 +1100,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1133,7 +1109,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1144,7 +1120,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1155,7 +1131,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1164,7 +1140,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1173,7 +1149,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1222,7 +1198,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1269,7 +1245,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1278,7 +1254,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1287,7 +1263,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1359,11 +1335,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1383,7 +1359,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1468,7 +1444,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1517,7 +1493,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1526,7 +1502,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1586,7 +1562,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1604,7 +1580,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1615,7 +1591,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1624,7 +1600,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj index b8b1e242806..c0f10960214 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj @@ -270,30 +270,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -318,25 +294,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -437,7 +413,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -446,7 +422,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -466,7 +442,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -488,7 +464,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -521,7 +497,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -530,7 +506,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -541,7 +517,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -550,7 +526,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -583,7 +559,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -592,7 +568,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -601,7 +577,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -643,7 +619,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -663,7 +639,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -674,7 +650,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -692,7 +668,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -852,7 +828,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -861,7 +837,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -870,7 +846,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -952,7 +928,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1028,7 +1004,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1039,7 +1015,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1048,7 +1024,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1057,7 +1033,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1066,7 +1042,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1115,7 +1091,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1124,7 +1100,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1133,7 +1109,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1144,7 +1120,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1155,7 +1131,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1164,7 +1140,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1173,7 +1149,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1222,7 +1198,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1269,7 +1245,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1278,7 +1254,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1287,7 +1263,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1359,11 +1335,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1383,7 +1359,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1468,7 +1444,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1517,7 +1493,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1526,7 +1502,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1586,7 +1562,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1604,7 +1580,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1615,7 +1591,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1624,7 +1600,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj index b8b1e242806..c0f10960214 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj @@ -270,30 +270,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -318,25 +294,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -437,7 +413,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -446,7 +422,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -466,7 +442,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -488,7 +464,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -521,7 +497,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -530,7 +506,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -541,7 +517,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -550,7 +526,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -583,7 +559,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -592,7 +568,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -601,7 +577,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -643,7 +619,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -663,7 +639,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -674,7 +650,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -692,7 +668,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -852,7 +828,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -861,7 +837,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -870,7 +846,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -952,7 +928,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1028,7 +1004,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1039,7 +1015,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1048,7 +1024,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1057,7 +1033,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1066,7 +1042,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1115,7 +1091,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1124,7 +1100,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1133,7 +1109,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1144,7 +1120,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1155,7 +1131,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1164,7 +1140,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1173,7 +1149,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1222,7 +1198,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1269,7 +1245,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1278,7 +1254,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1287,7 +1263,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1359,11 +1335,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1383,7 +1359,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1468,7 +1444,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1517,7 +1493,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1526,7 +1502,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1586,7 +1562,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1604,7 +1580,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1615,7 +1591,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1624,7 +1600,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj index 474c6315cd2..bfc46548afe 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj @@ -270,30 +270,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -318,25 +294,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -437,7 +413,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -446,7 +422,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -466,7 +442,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -488,7 +464,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -521,7 +497,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -530,7 +506,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -541,7 +517,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -550,7 +526,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -583,7 +559,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -592,7 +568,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -601,7 +577,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -643,7 +619,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -663,7 +639,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -674,7 +650,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -692,7 +668,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -852,7 +828,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -861,7 +837,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -870,7 +846,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -952,7 +928,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1028,7 +1004,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1039,7 +1015,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1048,7 +1024,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1057,7 +1033,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1066,7 +1042,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1115,7 +1091,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1124,7 +1100,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1133,7 +1109,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1144,7 +1120,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1155,7 +1131,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1164,7 +1140,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1173,7 +1149,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1222,7 +1198,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1269,7 +1245,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1278,7 +1254,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1287,7 +1263,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1359,11 +1335,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1383,7 +1359,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1468,7 +1444,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1517,7 +1493,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1526,7 +1502,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1586,7 +1562,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1604,7 +1580,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1615,7 +1591,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1624,7 +1600,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj index a04ff813ac2..374c81734dd 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj @@ -271,30 +271,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -319,25 +295,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -438,7 +414,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -447,7 +423,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -467,7 +443,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -489,7 +465,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -522,7 +498,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -531,7 +507,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -542,7 +518,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -551,7 +527,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -584,7 +560,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -593,7 +569,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -602,7 +578,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -644,7 +620,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -664,7 +640,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -675,7 +651,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -693,7 +669,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -853,7 +829,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -862,7 +838,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -871,7 +847,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -953,7 +929,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1029,7 +1005,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1040,7 +1016,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1049,7 +1025,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1058,7 +1034,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1067,7 +1043,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1116,7 +1092,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1125,7 +1101,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1134,7 +1110,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1145,7 +1121,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1156,7 +1132,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1165,7 +1141,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1174,7 +1150,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1223,7 +1199,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1270,7 +1246,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1279,7 +1255,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1288,7 +1264,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1360,11 +1336,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1384,7 +1360,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1469,7 +1445,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1518,7 +1494,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1527,7 +1503,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1587,7 +1563,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1605,7 +1581,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1616,7 +1592,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1625,7 +1601,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj index a04ff813ac2..374c81734dd 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj @@ -271,30 +271,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -319,25 +295,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -438,7 +414,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -447,7 +423,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -467,7 +443,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -489,7 +465,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -522,7 +498,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -531,7 +507,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -542,7 +518,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -551,7 +527,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -584,7 +560,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -593,7 +569,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -602,7 +578,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -644,7 +620,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -664,7 +640,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -675,7 +651,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -693,7 +669,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -853,7 +829,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -862,7 +838,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -871,7 +847,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -953,7 +929,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1029,7 +1005,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1040,7 +1016,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1049,7 +1025,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1058,7 +1034,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1067,7 +1043,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1116,7 +1092,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1125,7 +1101,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1134,7 +1110,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1145,7 +1121,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1156,7 +1132,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1165,7 +1141,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1174,7 +1150,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1223,7 +1199,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1270,7 +1246,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1279,7 +1255,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1288,7 +1264,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1360,11 +1336,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1384,7 +1360,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1469,7 +1445,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1518,7 +1494,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1527,7 +1503,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1587,7 +1563,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1605,7 +1581,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1616,7 +1592,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1625,7 +1601,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/Test.FAKECore.csproj b/src/legacy/Test.FAKECore/Test.FAKECore.csproj index 795deb4d89d..a98935c33fe 100644 --- a/src/legacy/Test.FAKECore/Test.FAKECore.csproj +++ b/src/legacy/Test.FAKECore/Test.FAKECore.csproj @@ -541,30 +541,6 @@ - - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -589,25 +565,25 @@ - + - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -708,7 +684,7 @@ ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -717,7 +693,7 @@ ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -737,7 +713,7 @@ ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -759,7 +735,7 @@ ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -792,7 +768,7 @@ ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -801,7 +777,7 @@ ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -812,7 +788,7 @@ ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -821,7 +797,7 @@ ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -854,7 +830,7 @@ ..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -863,7 +839,7 @@ ..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -872,7 +848,7 @@ ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -914,7 +890,7 @@ ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -934,7 +910,7 @@ ..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -945,7 +921,7 @@ ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -963,7 +939,7 @@ ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -1126,7 +1102,7 @@ ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -1135,7 +1111,7 @@ ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -1144,7 +1120,7 @@ ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -1226,7 +1202,7 @@ ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -1302,7 +1278,7 @@ ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -1313,7 +1289,7 @@ ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -1322,7 +1298,7 @@ ..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -1331,7 +1307,7 @@ ..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -1340,7 +1316,7 @@ ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1389,7 +1365,7 @@ ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1398,7 +1374,7 @@ ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1407,7 +1383,7 @@ ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1418,7 +1394,7 @@ ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1429,7 +1405,7 @@ ..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1438,7 +1414,7 @@ ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1447,7 +1423,7 @@ ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1496,7 +1472,7 @@ ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1543,7 +1519,7 @@ ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1552,7 +1528,7 @@ ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1561,7 +1537,7 @@ ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1633,11 +1609,11 @@ - + ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1657,7 +1633,7 @@ ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1742,7 +1718,7 @@ ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1791,7 +1767,7 @@ ..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1800,7 +1776,7 @@ ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1860,7 +1836,7 @@ ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1878,7 +1854,7 @@ ..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1889,7 +1865,7 @@ ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1898,7 +1874,7 @@ ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True diff --git a/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj b/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj index 1ea8b15d30b..3c11d22abda 100644 --- a/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj +++ b/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj @@ -178,30 +178,6 @@ - - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Mdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Pdb.dll - True - True - - - ..\..\..\..\packages\Mono.Cecil\lib\net35\Mono.Cecil.Rocks.dll - True - True - - - @@ -226,25 +202,25 @@ - + - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Mdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Mdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Pdb.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Pdb.dll True True - ..\..\..\..\packages\Mono.Cecil\lib\netstandard1.3\Mono.Cecil.Rocks.dll + ..\..\..\..\packages\Mono.Cecil\lib\netstandard2.0\Mono.Cecil.Rocks.dll True True @@ -345,7 +321,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False + True True @@ -354,7 +330,7 @@ ..\..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False + True True @@ -374,7 +350,7 @@ ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll - False + True True @@ -396,7 +372,7 @@ ..\..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False + True True @@ -429,7 +405,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False + True True @@ -438,7 +414,7 @@ ..\..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False + True True @@ -449,7 +425,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False + True True @@ -458,7 +434,7 @@ ..\..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False + True True @@ -491,7 +467,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False + True True @@ -500,7 +476,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False + True True @@ -509,7 +485,7 @@ ..\..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False + True True @@ -551,7 +527,7 @@ ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + True True @@ -571,7 +547,7 @@ ..\..\..\..\packages\System.IO.FileSystem.Primitives\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll - False + True True @@ -582,7 +558,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll - False + True True @@ -600,7 +576,7 @@ ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll - False + True True @@ -763,7 +739,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False + True True @@ -772,7 +748,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False + True True @@ -781,7 +757,7 @@ ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False + True True @@ -863,7 +839,7 @@ ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll - False + True True @@ -939,7 +915,7 @@ ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll - False + True True @@ -950,7 +926,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False + True True @@ -959,7 +935,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False + True True @@ -968,7 +944,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False + True True @@ -977,7 +953,7 @@ ..\..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False + True True @@ -1026,7 +1002,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False + True True @@ -1035,7 +1011,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False + True True @@ -1044,7 +1020,7 @@ ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False + True True @@ -1055,7 +1031,7 @@ ..\..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False + True True @@ -1066,7 +1042,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netcoreapp1.1\System.Runtime.InteropServices.dll - False + True True @@ -1075,7 +1051,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False + True True @@ -1084,7 +1060,7 @@ ..\..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False + True True @@ -1133,7 +1109,7 @@ ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False + True True @@ -1180,7 +1156,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1189,7 +1165,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1198,7 +1174,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False + True True @@ -1270,11 +1246,11 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False + True True @@ -1294,7 +1270,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False + True True @@ -1379,7 +1355,7 @@ ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll - False + True True @@ -1428,7 +1404,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False + True True @@ -1437,7 +1413,7 @@ ..\..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False + True True @@ -1497,7 +1473,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll - False + True True @@ -1515,7 +1491,7 @@ ..\..\..\..\packages\System.Threading\ref\netstandard1.3\System.Threading.dll - False + True True @@ -1526,7 +1502,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False + True True @@ -1535,7 +1511,7 @@ ..\..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False + True True From 4a6afdcb59c86b77d9fb8f2b125851a090d92e9c Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 25 Aug 2019 23:20:44 +0200 Subject: [PATCH 19/19] Release 5.16.1 --- RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 81d56138b56..053c2683363 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Release Notes -## 5.16.1-alpha - tbd +## 5.16.1 - 2019-08-25 * BUGFIX: Fix that `generate_load_scripts` prevents restore after update - https://github.com/fsharp/FAKE/issues/2382 * BUGFIX: Fix FAKE unable to load assemblies in some scenarios - https://github.com/fsharp/FAKE/issues/2381